Skip to content

Commit 536f75a

Browse files
authored
update desc (trekhleb#371)
* update desc * text error
1 parent 431560a commit 536f75a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/data-structures/queue/README.zh-CN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
在计算机科学中, 一个 **队列(queue)** 是一种特殊类型的抽象数据类型或集合。集合中的实体按顺序保存。
44

5-
队列基本操作有两种: 向队列的后端位置添加实体,称为入队,并从队列的前端位置移除实体,称为出队。
5+
队列基本操作有两种:入队和出队。从队列的后端位置添加实体,称为入队;从队列的前端位置移除实体,称为出队。
66

77

88
队列中元素先进先出 FIFO (first in, first out)的示意

0 commit comments

Comments
 (0)