harrysimply / learn-data-structure-and-algorithm

学习计算机中的数据结构
0 stars 0 forks source link

队列 Queue #9

Open harrysimply opened 2 years ago

harrysimply commented 2 years ago

双端队列 Deque

插入删除都在同一侧的队列。

A linear collection that supports element insertion and removal at both ends. The name deque is short for "double ended queue" and is usually pronounced "deck".