Skip to content

Commit 6e094e2

Browse files
committed
🐛 fix: stack(#10)
1 parent 35ea627 commit 6e094e2

File tree

3 files changed

+2
-14
lines changed

3 files changed

+2
-14
lines changed

docs/dataStructure/栈和队列/栈和队列 copy.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

docs/dataStructure/栈和队列/栈和队列.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
}
55
---
66

7-
在上面的数组中,我们可以通过索引随机访问元素,但是在某些情况下,我们可能要限制数据的访问顺序,于是有了两种限制访问顺序的数据结构:栈(后进后出)、队列(先进先出)
7+
在上面的数组中,我们可以通过索引随机访问元素,但是在某些情况下,我们可能要限制数据的访问顺序,于是有了两种限制访问顺序的数据结构:栈(先进后出)、队列(先进先出)
88

99
![](https://i.loli.net/2019/08/18/xqbQD8UEW1cRPFs.jpg)
1010

数据结构分类/栈和队列/栈和队列.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
在上面的数组中,我们可以通过索引随机访问元素,但是在某些情况下,我们可能要限制数据的访问顺序,于是有了两种限制访问顺序的数据结构:栈(后进后出)、队列(先进先出)
2+
在上面的数组中,我们可以通过索引随机访问元素,但是在某些情况下,我们可能要限制数据的访问顺序,于是有了两种限制访问顺序的数据结构:栈(先进后出)、队列(先进先出)
33

44
![](https://i.loli.net/2019/08/18/xqbQD8UEW1cRPFs.jpg)
55

0 commit comments

Comments
 (0)