Skip to content

Commit 588f0e8

Browse files
committed
再遇 01 矩阵 题,思路不是很清楚
1 parent 88a3c57 commit 588f0e8

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

data_structure/stack_queue.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,9 @@ vector<vector<int>> levelOrder(TreeNode *root) {
484484
/*
485485
* 从0出发,而不是从1出发!
486486
* 把所有为0的节点压入队列,并进行广度优先遍历
487-
* 每次向外扩散一格
487+
* 并不是一个点往外不停扩散,再换下一个点(那是深度优先)
488+
* 每次向外扩散一格,距离+1,并直接出栈!
489+
* 剩下的交给外圈的继续扩散
488490
*/
489491
vector<vector<int>> updateMatrix(vector<vector<int>>& matrix) {
490492
int row = matrix.size(), column = matrix[0].size();

punch_in/learned_along_the_journey.md

+10
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ vector<int> ret{n + 1, 1}; // 初始化为n + 1, 1两个元素!
2020
2121
### 普通数组也可以使用range for进行遍历
2222
23+
### 越界?
24+
mid * mid < x越界
25+
那就改写成mid < x / mid
26+
2327
### push_back vs emplace_back
2428
[C++ difference between emplace_back and push_back function
2529
](http://candcplusplus.com/c-difference-between-emplace_back-and-push_back-function)
@@ -38,6 +42,12 @@ push_back只能接受对象实例或者单参数版本的构造函数的参数
3842
* emplace_back
3943
不会创建临时对象,而是直接在vector中创建对象。避免了创建不必要的临时对象
4044
45+
### decomposition declaration
46+
C++17支持如下语法:
47+
```c++
48+
queue<pair<int, int>> queue;
49+
auto [i, j] = queue.front();
50+
```
4151

4252
## JetBrians产品中关于GitHub的fork、pull request使用
4353
[官方文档](https://www.jetbrains.com/help/idea/contribute-to-projects.html)

0 commit comments

Comments
 (0)