Skip to content

修改一个错别字 #2942

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion problems/栈与队列理论基础.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ C++标准库是有多个版本的,要知道我们使用的STL是哪个版本

**我们常用的SGI STL,如果没有指定底层实现的话,默认是以deque为缺省情况下栈的底层结构。**

deque是一个双向队列,只要封住一段,只开通另一端就可以实现栈的逻辑了。
deque是一个双向队列,只要封住一端,只开通另一端就可以实现栈的逻辑了。

**SGI STL中 队列底层实现缺省情况下一样使用deque实现的。**

Expand Down