자바 는 한 그루 의 나무 가 다른 나무의 서브 구조 인지 아 닌 지 를 판단 합 니 다.
2940 단어 검지 offer 알고리즘검지 offer 알고리즘(Java)
약속 빈 나 무 는 임의의 나무의 서브 구조 가 아니다.
코드
static class TreeNode {
int val;
TreeNode left;
TreeNode right;
public TreeNode(int val) {
this.val = val;
}
}
/**
* root2 root1
*
* @param root1
* @param root2
* @return
*/
public static boolean hasSub(TreeNode root1, TreeNode root2) {
boolean result = false;
// null,
if (root1 != null && root2 != null) {
// 1.
if (root1.val == root2.val) {
//2.
result = isSub(root1, root2);
}
// , root1 root2
if (!result) {
result = hasSub(root1.left, root2);
}
// ,root1 , root2
if (!result) {
result = hasSub(root1.right, root2);
}
}
return result;
}
/**
* tree2 tree1
* @param tree1
* @param tree2
* @return
*/
public static boolean isSub(TreeNode tree1, TreeNode tree2) {
// tree2 null , , tree2 tree1 ,
if (tree2 == null) {
return true;
}
// tree1 null, tree2 null,
// tree1 , tree2
if (tree1 == null) {
return false;
}
// tree1 tree2 , tree2 tree1
if (tree1.val != tree2.val) {
return false;
}
//
return isSub(tree1.left, tree2.left) && isSub(tree1.right, tree2.right);
}
public static void main(String[] args) {
TreeNode root1 = buildTree1();
TreeNode root2 = buildTree2();
boolean result = hasSub(root1, root2);
// true
System.out.println(result);
root2 = buildTree3();
result = hasSub(root1, root2);
// false
System.out.println(result);
}
/**
* tree1:
* 5
* 3 18
* @return
*/
private static TreeNode buildTree1(){
TreeNode root = new TreeNode(5);
TreeNode left = new TreeNode(3);
TreeNode right = new TreeNode(18);
root.left = left;
root.right = right;
return root;
}
/**
* tree2:
* 5
* 3
* @return
*/
private static TreeNode buildTree2(){
TreeNode root = new TreeNode(5);
TreeNode left = new TreeNode(3);
root.left = left;
return root;
}
/**
* tree3:
* 4
* @return
*/
private static TreeNode buildTree3(){
TreeNode root = new TreeNode(4);
return root;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
스 택 의 데이터 구 조 를 정의 합 니 다. 이 형식 에서 스 택 에 포 함 된 최소 요 소 를 얻 을 수 있 는 min 함수 (시간 복잡 도 는 O (1) 를 실현 하 십시오.package com.fiberhome.monitor.task; import java.util.Stack; public class SolutionStack { private Stack stack = new Stack...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.