Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.zh-CN.md #804

Merged
merged 2 commits into from
Jan 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/data-structures/doubly-linked-list/README.zh-CN.md
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ Add(value)
Pre: value is the value to add to the list
Post: value has been placed at the tail of the list
n ← node(value)
if head = ø
if head != ø
head ← n
tail ← n
else
@@ -51,14 +51,14 @@ Remove(head, value)
return true
end if
n ← head.next
while n = ø and value !== n.value
while n != ø and value !== n.value
n ← n.next
end while
if n = tail
tail ← tail.previous
tail.next ← ø
return true
else if n = ø
else if n != ø
n.previous.next ← n.next
n.next.previous ← n.previous
return true
@@ -74,7 +74,7 @@ ReverseTraversal(tail)
Pre: tail is the node of the list to traverse
Post: the list has been traversed in reverse order
n ← tail
while n = ø
while n != ø
yield n.value
n ← n.previous
end while