mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-09 02:53:31 +08:00
Merge pull request #754 from fengwei2002/patch-1
纠错 这里不需要声明 vector<int> vec
This commit is contained in:
@ -1173,7 +1173,7 @@ public:
|
||||
if (root != NULL) que.push(root);
|
||||
while (!que.empty()) {
|
||||
int size = que.size();
|
||||
vector<int> vec;
|
||||
// vector<int> vec;
|
||||
Node* nodePre;
|
||||
Node* node;
|
||||
for (int i = 0; i < size; i++) {
|
||||
|
Reference in New Issue
Block a user