Ocaml双链表:从双链表中删除满足条件的节点
Posted
技术标签:
【中文标题】Ocaml双链表:从双链表中删除满足条件的节点【英文标题】:Ocaml double linked list: remove a node satisfying a condition from a double linked list 【发布时间】:2020-02-14 17:24:34 【问题描述】:我们有一个双链表定义为:
type 'a llist =
| Nil
| Cons of (float *'a) * 'a lcell * 'a lcell
and 'a lcell = ('a llist) ref
我已经实现了一个添加头功能:
let add_head x head =
match !(!head) with
| Nil -> head := !(singleton x)
| Cons (e, previous, next) ->
let temp = Cons (x, ref Nil, !head) in
previous := temp;
head := previous;;
请注意,为了实现添加头,我使用了单例函数
let singleton (init: float * 'a): 'a lcell ref =
let l = ref (Cons (init, ref Nil, ref Nil)) in
let front = ref l in
front
我的问题是当我尝试删除一个元素时,我正在尝试编写一个删除函数remove: (float -> bool) -> 'a lcell ref -> unit
,这样remove p head
会删除其时间戳满足谓词p: float -> bool
的第一个节点。如果没有节点的时间戳满足谓词,则列表应保持不变。
这是我目前所拥有的:
let remove p head =
let rec remove' ll =
match !ll with
| Nil -> head := !head
| Cons ( (d,_), previous, next) ->
if p d then
match (!previous, !next) with
| (Nil, Nil) -> head := ref Nil (* empty list*)
| (Nil, Cons ( d1, p1, n1)) -> (* this is the head, remove it and reassign head*)
head := next;
p1 := Nil
| (Cons ( d2, p2, n2), Cons ( d1, p1, n1)) -> (* this is middle, remove it and fix pointers of previous and next*)
n2 := !next;
p1 := !previous
| (Cons ( d1, p1, n1), Nil) -> (* this is tail, remove it and make previous one the tail*)
n1:= Nil
else remove' next
in
remove' !head
我无法删除列表中间的项目,即不是头部或尾部。我也无法删除多个元素。有人可以帮帮我吗,我想我的火柴盒里遗漏了一些东西。
【问题讨论】:
【参考方案1】:当你在 match 语句中做 cons cons 时你搞砸了 您必须替换 previous 和 next 而不是 n2 和 p1 应该是
| Cons(d2, p2, n2), Cons (d1, p1, n1) ->
`previous := Cons(d2, p2, next);`
`next := Cons(d1, previous, n1);
【讨论】:
以上是关于Ocaml双链表:从双链表中删除满足条件的节点的主要内容,如果未能解决你的问题,请参考以下文章