Skip to content

Commit aa39a9e

Browse files
committed
Update binary-tree-preorder-traversal.cpp
1 parent 5786a87 commit aa39a9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

C++/binary-tree-preorder-traversal.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ class Solution2 {
4949
vector<int> res;
5050
stack<pair<TreeNode *, bool>> s;
5151
s.emplace(root, false);
52-
bool visited;
5352
while (!s.empty()) {
53+
bool visited;
5454
tie(root, visited) = s.top();
5555
s.pop();
5656
if (root == nullptr) {

0 commit comments

Comments
 (0)