Merge pull request #754 from fengwei2002/patch-1

纠错 这里不需要声明 vector<int> vec
This commit is contained in:
程序员Carl 2021-09-17 09:10:25 +08:00 committed by GitHub
commit a4465c0d1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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++) {