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 cc9cf49 commit f0599feCopy full SHA for f0599fe
Chapter_3_3.java
@@ -3,7 +3,7 @@
3
4
5
/*
6
- ʵÏÖMyLinkedListµÄcontainsÀý³Ì¡£
+ 实现MyLinkedList的contains例程。
7
*/
8
9
class MyLinkedList<AnyType> implements Iterable<AnyType> {
@@ -12,7 +12,7 @@ class MyLinkedList<AnyType> implements Iterable<AnyType> {
12
private Node<AnyType> beginMarker;
13
private Node<AnyType> endMarker;
14
15
- /*Node½ÚµãÀà*/
+ /*Node节点类*/
16
private static class Node<AnyType> {
17
public Node(AnyType d, Node<AnyType> p, Node<AnyType> n) {
18
data = d;
0 commit comments