leetcode129. 잎 노드 숫자의 합을 구하다

3834 단어 leetcode

1. 제목


https://leetcode-cn.com/problems/sum-root-to-leaf-numbers/

2. 제목


문제1: 매번 최종 레이어 업데이트 결과 귀속
/**
 * 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:
    int res = 0;
    void dfs(TreeNode* root,int num)
    {
     
        num = num*10+root->val;
        if(!root->left&&!root->right) res+=num;
        if(root->left) dfs(root->left,num);
        if(root->right) dfs(root->right,num);
    }
    int sumNumbers(TreeNode* root) {
     
        if(root) dfs(root,0);
        return res;
    }
};

좋은 웹페이지 즐겨찾기