We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87d201e commit fdb0ea6Copy full SHA for fdb0ea6
2 files changed
MD/LinkedList.md
@@ -4,7 +4,7 @@
4
5
如图所示 `LinkedList` 底层是基于双向链表实现的,也是实现了 `List` 接口,所以也拥有 List 的一些特点。
6
7
-## 新增
+## 新增方法
8
9
```java
10
public boolean add(E e) {
@@ -29,7 +29,7 @@
29
30
可见每次插入都是移动指针,和 ArrayList 的拷贝数组来说效率要高上不少。
31
32
-## 查询
+## 查询方法
33
34
35
public E get(int index) {
README.md
@@ -1,6 +1,6 @@
1
# Java 面试常见题型
2
3
-### Java 基础
+### Java 集合
- [ArrayList/Vector 底层分析](https://github.com/crossoverJie/Java-Interview/blob/master/MD/ArrayList.md)
- [LinkedList 底层分析](https://github.com/crossoverJie/Java-Interview/blob/master/MD/LinkedList.md)
0 commit comments