Skip to content

Commit 5e6d886

Browse files
committed
Update README.md
1 parent 2a0d8e0 commit 5e6d886

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

group18/935542673/Coding/20170219/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## 2017编程提高社群作业:实现基本的数据结构(2017.2.19)
22

3-
#### [所有基本数据结构实现类及接口](https://github.com/china-kook/coding2017/tree/master/group18/935542673/Coding/20170219/src/com/ikook/basic_data_structure)
3+
#### [所有基本数据结构实现类及接口](https://github.com/china-kook/coding2017/tree/master/group18/935542673/Coding/20170219/src/com/ikook/basic_data_structure)
44

55
1. 实现了ArrayList、LinkedList、Queue(依靠LinkedList实现)、Stack(依靠ArrayList实现)
66

@@ -76,6 +76,8 @@
7676
(2)next():返回游标当前位置的元素并将游标移动到下一个位置;
7777
(3)remove():删除游标左边的元素,在执行完 next 之后该操作只能执行一次。
7878
```
79+
80+
7981
#### [所有基本数据结构测试类](https://github.com/china-kook/coding2017/tree/master/group18/935542673/Coding/20170219/junit/com/ikook/basic_data_structure)
8082

8183
说明:由于作业以实现基本的数据结构为主,则在实现单元测试时,只对正常情况进行了测试,一些异常情况并进行编写测试用例。

0 commit comments

Comments
 (0)