We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d17ede commit 139350bCopy full SHA for 139350b
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