diff --git a/Java相关/LinkedList.md b/Java相关/LinkedList.md index 15f67f88..31f5f483 100644 --- a/Java相关/LinkedList.md +++ b/Java相关/LinkedList.md @@ -288,7 +288,7 @@ public int lastIndexOf(Object o) { return indexOf(o) != -1; } ``` -###删除方法 +### 删除方法 **remove()** ,**removeFirst(),pop():** 删除头节点 ``` public E pop() {