Remove the heading numbers

in all the source docs.
This commit is contained in:
krahets
2023-02-16 03:39:01 +08:00
parent 15417d2a95
commit 88b00151b0
46 changed files with 257 additions and 172 deletions

View File

@@ -2,7 +2,7 @@
comments: true
---
# 5.3. 双向队列
# 双向队列
对于队列,我们只能在头部删除或在尾部添加元素,而「双向队列 Deque」更加灵活在其头部和尾部都能执行元素添加或删除操作。
@@ -10,7 +10,7 @@ comments: true
<p align="center"> Fig. 双向队列的操作 </p>
## 5.3.1. 双向队列常用操作
## 双向队列常用操作
双向队列的常用操作见下表,方法名需根据特定语言来确定。
@@ -293,7 +293,7 @@ comments: true
```
## 5.3.2. 双向队列实现 *
## 双向队列实现 *
与队列类似,双向队列同样可以使用链表或数组来实现。