검지offer 면접문제두 갈래 트리 중 하나가 되는 경로

5891 단어 검지offer 브러시

검지offer 면접문제두 갈래 트리 중 하나가 되는 경로

  • 제목
  • 사고방식
  • 코드

  • 제목


    두 갈래 트리와 정수를 입력하고 두 갈래 트리의 노드 값과 정수를 입력하기 위한 모든 경로를 출력합니다.나무의 뿌리 노드에서 시작하여 잎 노드가 지나가는 노드까지 내려가서 하나의 경로를 형성한다.

    생각


    앞의 순서를 사용하고 두 개의 체인 메모리 경로를 사용합니다. 하나의 체인 메모리 path입니다. 만약에 잎 노드에 귀속된다면sum가 0과 같지 않으면 이 경로가 문제의 뜻에 부합되지 않는다는 것을 나타냅니다. 다음에 위로 거슬러 올라갑니다. 거슬러 올라가기 전에 이 노드를 path에서 제거해야 합니다. 만약sum==0이면 path를 다른 체인 메모리 result에 저장하고 마지막으로result로 돌아갑니다.

    코드


    다음 전시 .
    // An highlighted block
    
    /**
     * Definition for a binary tree node.
     * public class TreeNode {
     *     int val;
     *     TreeNode left;
     *     TreeNode right;
     *     TreeNode(int x) { val = x; }
     * }
     */
    class Solution {
    
        private LinkedList<Integer> path = new LinkedList<>();
        private List<List<Integer>> result = new LinkedList<>();
        public List<List<Integer>> pathSum(TreeNode root, int sum) {
            pre(root, sum);
            return result;
        }
    
        public void pre(TreeNode root, int sum){
            if(root == null){
                return;
            }
            sum = sum-root.val;
            path.add(root.val);
            if(sum==0 && root.left ==null && root.right == null){
                result.add(new LinkedList(path));
            }
            pre(root.left,sum);
            pre(root.right,sum);
            path.removeLast();
        }
    
    }
    
    
    
    

    좋은 웹페이지 즐겨찾기