Update deque.md

This commit is contained in:
Yudong Jin 2022-12-30 16:11:47 +08:00 committed by GitHub
parent d8bf0b02d1
commit 56b6bf10f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -168,7 +168,7 @@ comments: true
```csharp title="deque.cs"
/* 初始化双向队列 */
/* LinkedList 是 C# 中使用双向链表实现的双向队列 */
// 在 C# 中,将链表 LinkedList 看作双向队列来使用
LinkedList<int> deque = new LinkedList<int>();
/* 元素入队 */