Skip to content

Commit

Permalink
Update deque.md
Browse files Browse the repository at this point in the history
  • Loading branch information
krahets authored Dec 30, 2022
1 parent d8bf0b0 commit 56b6bf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/chapter_stack_and_queue/deque.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ comments: true

```csharp title="deque.cs"
/* 初始化双向队列 */
/* LinkedList 是 C# 中使用双向链表实现的双向队列 */
// 在 C# 中,将链表 LinkedList 看作双向队列来使用
LinkedList<int> deque = new LinkedList<int>();

/* 元素入队 */
Expand Down

0 comments on commit 56b6bf1

Please sign in to comment.