Skip to content

Commit fdb0ea6

Browse files
committed
更新
1 parent 87d201e commit fdb0ea6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

MD/LinkedList.md

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

55
如图所示 `LinkedList` 底层是基于双向链表实现的,也是实现了 `List` 接口,所以也拥有 List 的一些特点。
66

7-
## 新增
7+
## 新增方法
88

99
```java
1010
public boolean add(E e) {
@@ -29,7 +29,7 @@
2929

3030
可见每次插入都是移动指针,和 ArrayList 的拷贝数组来说效率要高上不少。
3131

32-
## 查询
32+
## 查询方法
3333

3434
```java
3535
public E get(int index) {

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Java 面试常见题型
22

3-
### Java 基础
3+
### Java 集合
44
- [ArrayList/Vector 底层分析](https://github.com/crossoverJie/Java-Interview/blob/master/MD/ArrayList.md)
55
- [LinkedList 底层分析](https://github.com/crossoverJie/Java-Interview/blob/master/MD/LinkedList.md)
66

0 commit comments

Comments
 (0)