Skip to content

Commit f0599fe

Browse files
author
gujiale
committed
update Chapter_3_3
1 parent cc9cf49 commit f0599fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Chapter_3_3.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
/*
6-
ʵÏÖMyLinkedListµÄcontainsÀý³Ì¡£
6+
实现MyLinkedList的contains例程。
77
*/
88

99
class MyLinkedList<AnyType> implements Iterable<AnyType> {
@@ -12,7 +12,7 @@ class MyLinkedList<AnyType> implements Iterable<AnyType> {
1212
private Node<AnyType> beginMarker;
1313
private Node<AnyType> endMarker;
1414

15-
/*Node½ÚµãÀà*/
15+
/*Node节点类*/
1616
private static class Node<AnyType> {
1717
public Node(AnyType d, Node<AnyType> p, Node<AnyType> n) {
1818
data = d;

0 commit comments

Comments
 (0)