Sum Root to Leaf Numbers——LeetCode

2075 단어 LeetCode
Given a binary tree containing digits from  0-9  only, each root-to-leaf path could represent a number.
An example is the root-to-leaf path  1->2->3  which represents the number  123 .
Find the total sum of all root-to-leaf numbers.
For example,
    1

   / \

  2   3


 
The root-to-leaf path  1->2  represents the number  12 .The root-to-leaf path  1->3  represents the number  13 .
Return the sum = 12 + 13 =  25 .
 
제목 대의: 두 갈래 나무를 주면 각 노드는 0-9 사이의 숫자이고 뿌리 노드에서 잎 결점까지 하나의 숫자를 표시하며 모든 이 숫자의 합을 구한다.
문제 풀이 사고방식: 이 문제는 DFS를 고찰해야 한다. 직접 DFS로 해답을 구하거나 중서로queue를 반복해서도 할 수 있다. 최근에 문제를 풀 컨디션이 없어서 머리가 멍하다.
    public int sumNumbers(TreeNode root) {

        return sum(root,0);

    }

    

    public int sum(TreeNode node,int sum){

        if(node==null){

            return 0;

        }

        if(node.left==null&&node.right==null){

            sum=sum*10+node.val;

            return sum;

        }

           return  sum(node.left,sum*10+node.val)+sum(node.right,sum*10+node.val);

    }

좋은 웹페이지 즐겨찾기