Skip to content

Commit 3f34116

Browse files
committed
implement LinkedList by Korben
1 parent b8ca828 commit 3f34116

File tree

3 files changed

+434
-16
lines changed

3 files changed

+434
-16
lines changed

group20/1107837739/1107837739Learning/src/org/korben/coding/basic/list/KDoubleLinkedList.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public int indexOf(T o) {
148148

149149
@Override
150150
public KIterator<T> iterator() {
151-
throw new IllegalStateException("方法未实现");
151+
throw new UnsupportedOperationException("方法未实现");
152152
}
153153

154154
private Node<T> getNode(int index) {

0 commit comments

Comments
 (0)