자바 이 진 트 리 의 미 러 구현
3664 단어 검지 offer 알고리즘검지 offer 알고리즘(Java)
코드
static class TreeNode {
int val;
TreeNode left;
TreeNode right;
public TreeNode(int val) {
this.val = val;
}
}
/**
*
* x | x
* y z | z y
* @param root
*/
public static void mirror(TreeNode root) {
// ,
if (root == null) {
return;
}
// ,
if (root.left == null && root.right == null) {
return;
}
// ,
if (root.left != null) {
mirror(root.left);
}
// ,
if (root.right != null) {
mirror(root.right);
}
//
TreeNode temp = root.left;
root.left = root.right;
root.right = temp;
}
/**
*
* x | x
* y z | z y
* @param root
*/
public static void mirrorByStack(TreeNode root) {
// ,
if (root == null) {
return;
}
// ,
if (root.left == null && root.right == null) {
return;
}
// , null , null, stack
//
// 5
// 3 18
// 2 4
// 5 , , ,
// 5
// 18 3
// 2 4
// 18 3 stack , 3, , ,
// 5
// 18 3
// 4 2
// 4 2 stack , 2,4,18, ,
Stack stack = new Stack<>();
//
stack.push(root);
//
while (stack.size() > 0) {
// ,
TreeNode node = stack.pop();
// null,
if (node.left != null || node.right != null) {
TreeNode temp = node.left;
node.left = node.right;
node.right = temp;
}
// , push ,
if (node.left != null) {
stack.push(node.left);
}
// , push ,
if (node.right != null) {
stack.push(node.right);
}
}
}
/**
*
* @param root
*/
private static void printTree(TreeNode root) {
if (root == null) {
return;
}
System.out.print(root.val + " ");
printTree(root.left);
printTree(root.right);
}
public static void main(String[] args) {
TreeNode root = buildTree1();
printTree(root);
mirrorByStack(root);
System.out.println();
printTree(root);
}
/**
* tree1:
* 5
* 3 18
* 2 4
* @return
*/
private static TreeNode buildTree1(){
TreeNode root = new TreeNode(5);
TreeNode left = new TreeNode(3);
TreeNode left1 = new TreeNode(2);
TreeNode right1 = new TreeNode(4);
left.left = left1;
left.right = right1;
TreeNode right = new TreeNode(18);
root.left = left;
root.right = right;
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에 따라 라이센스가 부여됩니다.