1
0
mirror of https://github.com/Didnelpsun/CS408.git synced 2026-06-17 07:27:12 +08:00

串更新

This commit is contained in:
Didnelpsun
2021-04-22 23:31:40 +08:00
parent ce1f4aec3e
commit 9528d486d6
6 changed files with 164 additions and 19 deletions

View File

@@ -30,3 +30,16 @@
## 链队
## 双端队列
双端队列:只允许从两端插入、两端删除的线性表。
输入受限的双端队列:只允许从一端插入,两端删除的线性表。
输入受限的双端队列:只允许从一端删除,两端插入的线性表。
## 队列应用
+ 树的层次遍历。
+ 图的广度优先遍历。
+ 进程争用FCFS策略。