[검지 offer-Java 버전] 25 두 갈래 나무와 어떤 값의 경로.
이런 문제에 대해서는 줄곧 약간 약하다. 몇 번 더 생각하면 OK. 주로 익숙하지 않다. 코드를 쓴 후에 보면 알겠지만 스스로 생각할 때는 좀 어렵다.
public class _Q25 {
public void FindPathInTree(BinaryTreeNode<Integer> tree, int expectedSum){
if(tree == null) return;
Vector<BinaryTreeNode<Integer>> path = new Vector<>();
int curSum = 0;
FindAndPrintPath(tree, expectedSum, curSum, path);
}
private void FindAndPrintPath(BinaryTreeNode<Integer> tree, int expectedSum,
int curSum, Vector<BinaryTreeNode<Integer>> path){
if(tree == null) return;
curSum = curSum + tree.value;
path.add(tree);
if(curSum == expectedSum && tree.leftChild == null && tree.rightChild == null){
for(int i=0; i<path.size(); i++){
System.out.print(path.get(i).value + " ");
}
System.out.println();
}
if(tree.leftChild != null) FindAndPrintPath(tree.leftChild, expectedSum, curSum, path);
if(tree.rightChild != null) FindAndPrintPath(tree.rightChild, expectedSum, curSum, path);
path.remove(path.size() - 1); //
}
}
테스트 코드:
public class _Q25Test extends TestCase {
_Q25 printTreePath = new _Q25();
public void test(){
BinaryTreeNode<Integer> root = new BinaryTreeNode<>();
BinaryTreeNode<Integer> node1 = new BinaryTreeNode<>();
BinaryTreeNode<Integer> node2 = new BinaryTreeNode<>();
BinaryTreeNode<Integer> node3 = new BinaryTreeNode<>();
BinaryTreeNode<Integer> node4 = new BinaryTreeNode<>();
root.value = 10;
node1.value = 5;
node2.value = 12;
node3.value = 4;
node4.value = 7;
root.leftChild = node1;
root.rightChild = node2;
node1.leftChild = node3;
node1.rightChild = node4;
node2.leftChild = null; node2.rightChild = null;
node3.leftChild = null; node3.rightChild = null;
node4.leftChild = null; node4.rightChild = null;
printTreePath.FindPathInTree(root, 22);
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.