剑指Offer之Java算法习题精讲二叉树专题篇上

网友投稿 294 2022-08-19


剑指Offer之Java算法习题精讲二叉树专题篇上

来和二叉树玩耍吧~

题目一

解法

/**

* Definition for a binary tree node.

* public class TreeNode {

* int val;

* TreeNode left;

* TreeNode right;

* TreeNode() {}

* TreeNode(int val) { this.val = val; }

* TreeNode(int val, TreeNode left, TreeNode right) {

* this.val = val;

* this.left = left;

* this.right = right;

* }

* }

*/

class Solution {

public boolean isSymmetric(TreeNode root) {

return method(root.left,root.right);

}

public boolean method(TreeNode l,TreeNode r){

if(l==null&&r==null) return true;

if(l==null||r==null||l.val!=r.val) return false;

return method(l.left,r.right)&&method(l.right,r.left);

}

}

题目二

解法

/**

* Definition for a binary tree node.

* public class TreeNode {

* int val;

* TreeNode left;

* TreeNode right;

* TreeNode() {}

* TreeNode(int val) { this.val = val; }

* TreeNode(int val, TreeNode left, TreeNode right) {

* this.val = val;

* this.left = left;

* this.right = right;

* }

* }

*/

class Solution {

public TreeNode sortedArrayToBST(int[] nums) {

return method(nums,0,nums.length-1);

}

public TreeNode method(int[] nums,int l,int r){

if(l>r) return null;

int mid = l+(r-l)/2;

TreeNode root = new TreeNode(nums[mid]);

root.left = method(nums,l,mid-1);

root.right = method(nums,mid+1,r);

return root;

}

}

题目三

解法

/**

* Definition for a binary tree node.

* public class TreeNode {

* int val;

* TreeNode left;

* TreeNode right;

* TreeNode() {}

* TreeNode(int val) { this.val = val; }

* TreeNode(int val, TreeNode left, TreeNode right) {

* this.val = val;

* this.left = left;

* this.right = righhttp://t;

* }

* }

*/

class Solution {

public boolean isBalanced(TreeNode root) {

if(root==null) return true;

return Math.abs(method(root.left)-method(root.right))<=1&&isBalanced(root.left)&&isBalanced(root.right);

}

public int method(TreeNode root){

if(root==null) return 0;

return Math.max(method(root.left),method(root.right))+1;

}

}

题目四

解法

/**

* Definition for a binary tree node.

* public class TreeNode {

* int val;

* TreeNode left;

* TreeNode right;

* TreeNode() {}

* TreeNode(int val) { this.val = val; }

* TreeNode(int val, TreeNode left, TreeNode right) {

* this.val = val;

* this.left = left;

* this.right = right;

* }

* }

*/

class Solution {

public boolean hasPathSum(TreeNode root, int targetSum) {

if(root==null) return false;

if(root.left == null && root.right == null) return targetSum==root.val;

return hasPathSum(root.left,targetSum-root.val)||hasPathSum(root.right,targetSum-root.val);

}

}

题目五

解法

/**

* Definition for a binary tree node.

* public class TreeNode {

* int val;

* TreeNode left;

* TreeNode right;

* TreeNode() {}

* TreeNode(int val) { this.val = val; }

* TreeNode(int val, TreeNode left, TreeNode right) {

* this.val = val;

* this.left = left;

* this.right = right;

* }

* }

*/

class Solution {

public TreeNode invertTree(TreeNode root) {

if(root==nulIrMgpCiGl) return null;

TreeNode node = new TreeNode(root.val);

node.right = invertTree(root.left);

node.left = invertTree(root.right);

return node;

}

}


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:SpringBoot接口中如何直接返回图片数据
下一篇:Springboot如何通过流返回文件
相关文章

 发表评论

暂时没有评论,来抢沙发吧~