Use underline format for the technical terms (#1213)

* Use underline format for the technical terms

* Bug fixes
This commit is contained in:
Yudong Jin
2024-04-03 03:52:17 +08:00
committed by GitHub
parent 06068927cd
commit 2b1a98fb61
42 changed files with 105 additions and 105 deletions

View File

@@ -1,6 +1,6 @@
# 双向队列
在队列中,我们仅能删除头部元素或在尾部添加元素。如下图所示,双向队列 double-ended queue提供了更高的灵活性,允许在头部和尾部执行元素的添加或删除操作。
在队列中,我们仅能删除头部元素或在尾部添加元素。如下图所示,<u>双向队列double-ended queue</u>提供了更高的灵活性,允许在头部和尾部执行元素的添加或删除操作。
![双向队列的操作](deque.assets/deque_operations.png)