We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2d17ede + 139350b commit 651df42Copy full SHA for 651df42
Java相关/LinkedList.md
@@ -28,8 +28,8 @@ List list=Collections.synchronizedList(new LinkedList(...));
28
```java
29
private static class Node<E> {
30
E item;//节点值
31
- Node<E> next;//前驱节点
32
- Node<E> prev;//后继节点
+ Node<E> next;//后继节点
+ Node<E> prev;//前驱节点
33
34
Node(Node<E> prev, E element, Node<E> next) {
35
this.item = element;
0 commit comments