Skip to content
Merged
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 data_structure/stack_queue.md
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ func updateMatrix(matrix [][]int) [][]int {
## 总结

- 熟悉栈的使用场景
- 后出先出,保存临时值
- 后入先出,保存临时值
- 利用栈 DFS 深度搜索
- 熟悉队列的使用场景
- 利用队列 BFS 广度搜索
Expand Down