acwing 47. 二叉树中和为某一值的路径
2021-02-06 19:18
标签:tree node vector for win back null node int ini 地址 https://www.acwing.com/problem/content/description/45/ 输入一棵二叉树和一个整数,打印出二叉树中结点值的和为输入整数的所有路径。 从树的根结点开始往下一直到叶结点所经过的结点形成一条路径。 树的处理 一半是递归 acwing 47. 二叉树中和为某一值的路径 标签:tree node vector for win back null node int ini 原文地址:https://www.cnblogs.com/itdef/p/11407027.html给出二叉树如下所示,并给出num=22。
5
/ 4 6
/ / 12 13 6
/ \ / 9 1 5 1
输出:[[5,4,12,1],[5,6,6,5]]
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
vector
文章标题:acwing 47. 二叉树中和为某一值的路径
文章链接:http://soscw.com/index.php/essay/51849.html