auto commit
This commit is contained in:
parent
1229e8a008
commit
0bd052c001
|
@ -7,8 +7,6 @@
|
|||
* [注意事项](#注意事项)
|
||||
* [二、栈和队列](#二栈和队列)
|
||||
* [栈](#栈)
|
||||
* [1. 数组实现](#1-数组实现)
|
||||
* [2. 链表实现](#2-链表实现)
|
||||
* [2. 队列](#2-队列)
|
||||
* [三、union-find](#三union-find)
|
||||
* [quick-find](#quick-find)
|
||||
|
@ -186,7 +184,7 @@ first-in-last-out(FILO)
|
|||
|
||||
<div align="center"> <img src="../pics//1c237399-e322-4930-b5b4-a582b1ad8bda.png" width="300"/> </div><br>
|
||||
|
||||
### 1. 数组实现
|
||||
#### 1. 数组实现
|
||||
|
||||
```java
|
||||
public class ResizeArrayStack<Item> implements Iterable<Item> {
|
||||
|
@ -253,7 +251,7 @@ public class ResizeArrayStack<Item> implements Iterable<Item> {
|
|||
Item[] arr = (Item[]) new Object[N];
|
||||
```
|
||||
|
||||
### 2. 链表实现
|
||||
#### 2. 链表实现
|
||||
|
||||
需要使用链表的头插法来实现,因为头插法中最后压入栈的元素在链表的开头,它的 next 指针指向前一个压入栈的元素,在弹出元素使就可以让前一个压入栈的元素称为栈顶元素。
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user