[파워 버클] 113.경로 총 II
7326 단어 LEETCODE
예: 다음과 같은 두 갈래 트리와 목표와sum=22,
5
/ \
4 8
/ / \
11 13 4
/ \ / \
7 2 5 1
반환:
[
[5,4,11,2],
[5,8,4,5]
]
팁:
<= 10000
답:
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
List<List<Integer>> list1 = new ArrayList<List<Integer>>();
public List<List<Integer>> pathSum(TreeNode root, int sum) {
int total = 0;
dfs(root, sum, total, new ArrayList<Integer>());
return list1;
}
public void dfs(TreeNode root, int sum,int total, List<Integer> list){
if(root == null) return;
list.add(root.val);
total += root.val;
if(total == sum && root.left == null && root.right == null) {
list1.add(new ArrayList<>(list));
}else{
dfs(root.left, sum, total, list);
dfs(root.right, sum, total, list);
}
list.remove(list.size() - 1);
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[파워 버클] 113.경로 총 II제목: 두 갈래 나무와 정수를 입력하고 두 갈래 나무의 노드 값과 정수를 입력하기 위한 모든 경로를 출력합니다.나무의 뿌리 노드에서 시작하여 잎 노드가 지나가는 노드까지 내려가서 하나의 경로를 형성한다. 예: 다음과...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.