Skip to content

fix: 修复 0112.路径总和.md 文字描述错误 #2948

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions problems/0112.路径总和.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,11 +172,11 @@ public:

### 迭代

如果使用栈模拟递归的话,那么如果做回溯呢
如果使用栈模拟递归的话,又该如何做回溯呢

**此时栈里一个元素不仅要记录该节点指针,还要记录从头结点到该节点的路径数值总和。**

c++就我们用pair结构来存放这个栈里的元素
c++ 我们就用pair结构来存放这个栈里的元素

定义为:`pair<TreeNode*, int>` pair<节点指针,路径数值>

Expand Down