110.平衡二叉树
题目链接:110. 平衡二叉树 - 力扣(LeetCode)
讲解链接:代码随想录
求高度不是求深度 高度需要从下到上(后序遍历) 深度需要从上到下(先序遍历)
Java代码:
class Solution {
public boolean isBalanced(TreeNode root) {
//递归做法
return getHeight(root) != -1;
}
private int getHeight(TreeNode root){
if(root == null) return 0;
int leftHeight = getHeight(root.left);
if(leftHeight == -1) return -1;
int rightHeight = getHeight(root.right);
if(rightHeight == -1) return -1;
if(Math.abs(leftHeight - rightHeight) > 1){
return -1;
}
return Math.max(leftHeight,rightHeight) + 1;
}
}
257. 二叉树的所有路径
题目链接:257. 二叉树的所有路径 - 力扣(LeetCode)
讲解链接:代码随想录
给你一个二叉树的根节点 root
,按 任意顺序 ,返回所有从根节点到叶子节点的路径。
叶子节点 是指没有子节点的节点 回溯和递归都是相伴相生的
递归
- 递归函数参数以及返回值
- 确定递归终止条件
- 确定单层递归逻辑
Java代码:
class Solution {
public List<String> binaryTreePaths(TreeNode root) {
//递归
List<String> res = new ArrayList<>();//存最终结果
if(root == null) return res;
List<Integer> paths = new ArrayList<>();//作为结果中的路径
traversal(root, paths, res);
return res;
}
private void traversal(TreeNode root, List<Integer> paths, List<String> res){
paths.add(root.val);///前序遍历 中间节点
if(root.left == null && root.right == null){
//输出
StringBuilder sb = new StringBuilder();
//StringBuilder用来拼接字符串 速度更快
for(int i = 0; i < paths.size() - 1; i++){
sb.append(paths.get(i)).append("->");
}
sb.append(paths.get(paths.size() - 1));//记录最后一个节点
res.add(sb.toString());//收集一个路径
return;
}
//递归和回溯是同时进行 所以需要放在同一个花括号里
if(root.left != null){//左
traversal(root.left, paths, res);
paths.remove(paths.size() - 1);//回溯
}
if(root.right != null){//右
traversal(root.right, paths, res);
paths.remove(paths.size() - 1);//回溯
}
}
}
404.左叶子结点之和
题目链接:404. 左叶子之和 - 力扣(LeetCode)
讲解链接:代码随想录
本题要通过节点的父节点判断本节点的属性
给定二叉树的根节点 root
,返回所有左叶子之和。
Java代码:
/迭代法
class Solution{
public int sumOfLeftLeaves(TreeNode root){
if(root == null) return 0;
Stack<TreeNode> stack = new Stack<>();
stack.add(root);
int result = 0;
while(!stack.isEmpty()){
TreeNode node = stack.pop();
if(node.left != null && node.left.left == null && node.left.right == null){
result += node.left.val;
}
if(node.left != null) stack.add(node.left);
if(node.right != null) stack.add(node.right);
}
return result;
}
}
//递归法
class Solution {
public int sumOfLeftLeaves(TreeNode root) {
//递归
if(root == null) return 0;
int leftvalue = sumOfLeftLeaves(root.left);//左
int rightvalue = sumOfLeftLeaves(root.right);//右
int midvalue = 0;
if(root.left != null && root.left.left == null && root.left.right == null){
midvalue = root.left.val;
}
int sum = midvalue + leftvalue + rightvalue;
return sum;
}
}
222.完全二叉树的节点个数
题目链接:222. 完全二叉树的节点个数 - 力扣(LeetCode)
讲解链接:代码随想录
一样的 迭代递归写法
Java代码:
class Solution{
//前序遍历迭代法
public int countNodes(TreeNode root){
if(root == null) return 0;
Queue<TreeNode> q = new LinkedList<>();
q.offer(root);
int count = 0;
while(!q.isEmpty()){
for(int i = 0; i < q.size(); i++){
TreeNode node = q.poll();
count++;
if(node.left != null) q.offer(node.left);
if(node.right != null) q.offer(node.right);
}
}
return count;
}
}
//递归
class Solution {
public int countNodes(TreeNode root) {
if(root == null) return 0;
return countNodes(root.left) + countNodes(root.right) + 1;
}
}
OK今天完成的比较早去看看八股
标签:paths,return,int,root,随想录,二叉树,null,第十五天,left From: https://blog.csdn.net/chengooooooo/article/details/144401063