Fix LinkedList pseudo-code (issue #191).

This commit is contained in:
Oleksii Trekhleb 2018-08-30 08:04:47 +03:00
parent af64d12a23
commit a8d7435b8d

View File

@ -76,10 +76,10 @@ Remove(head, value)
end if end if
return true return true
end if end if
while n.next = ø and n.next.value = value while n.next != ø and n.next.value != value
n ← n.next n ← n.next
end while end while
if n.next = ø if n.next != ø
if n.next = tail if n.next = tail
tail ← n tail ← n
end if end if