mirror of
https://github.com/trekhleb/javascript-algorithms.git
synced 2026-03-13 08:51:02 +08:00
Partial translation of Simplified Chinese (#185)
* init * init * init * init
This commit is contained in:
committed by
Oleksii Trekhleb
parent
68af4fc165
commit
872521fb03
15
src/data-structures/queue/README.zh-CN.md
Normal file
15
src/data-structures/queue/README.zh-CN.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# 队列
|
||||
|
||||
在计算机科学中, 一个 **队列(queue)** 是一种特殊类型的抽象数据类型或集合。集合中的实体按顺序保存。
|
||||
|
||||
队列基本操作有两种: 向队列的后端位置添加实体,称为入队,并从队列的前端位置移除实体,称为出队。
|
||||
|
||||
|
||||
队列中元素先进先出 FIFO (first in, first out)的示意
|
||||
|
||||

|
||||
|
||||
## 参考
|
||||
|
||||
- [Wikipedia](https://en.wikipedia.org/wiki/Queue_(abstract_data_type))
|
||||
- [YouTube](https://www.youtube.com/watch?v=wjI1WNcIntg&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8&index=3&)
|
||||
Reference in New Issue
Block a user