算法练习LeetCode初级算法之树

时间:2022-09-27 19:35:46
  • 二叉树的前序遍历

  • 我的解法:利用递归,自底向下逐步添加到list,返回最终的前序遍历list

    class Solution {

    public List<Integer> preorderTraversal(TreeNode root) {

    List<Integer> list=new ArrayList<>();

    if (root==null) {

    return list;

    }

    list.add(root.val);

    if (root.left!=null) {

    list.addAll(preorderTraversal(root.left));

    }

    if (root.right!=null) {

    list.addAll(preorderTraversal(root.right));

    }

    return list;

    }

    }

  • 参考解法:利用递归,但只在外部建一个list,更好理解!

    class Solution {

    public List<Integer> list=new LinkedList<>();

    public List<Integer> preorderTraversal(TreeNode root) {

    if (root==null)

    return list;

    list.add(root.val);

    preorderTraversal(root.left);

    preorderTraversal(root.right);

    return list;

    }

    }

  • 中序遍历二叉树,同样有两种方法

  • 第一种

    class Solution {

    public List<Integer> inorderTraversal(TreeNode root) {

    List<Integer> list=new ArrayList<>();

    if (root==null) {

    return list;

    }

    if (root.left!=null) {

    list.addAll(inorderTraversal(root.left));

    }

    list.add(root.val);

    if (root.right!=null) {

    list.addAll(inorderTraversal(root.right));

    }

    return list;

    }

    }

  • 第二种

    class Solution {

    List<Integer> list=new ArrayList<>();

    public List<Integer> inorderTraversal(TreeNode root) {

    if (root==null) {

    return list;

    }

    inorderTraversal(root.left);

    list.add(root.val);

    inorderTraversal(root.right);

    return list;

    }

    }

  • 后序遍历二叉树:也有两种方法,和前面的差不多,所以只写简洁的

    class Solution {

    List<Integer> list=new ArrayList<>();

    public List<Integer> postorderTraversal(TreeNode root) {

    if (root==null) {

    return list;

    }

    postorderTraversal(root.left);

    postorderTraversal(root.right);

    list.add(root.val);

    return list;

    }

    }

  • 层次遍历二叉树

  • 队列解法:

    class Solution {

    public List<List<Integer>> levelOrder(TreeNode root) {

    List<List<Integer>> res=new ArrayList<>();

    if (root==null) {

    return res;

    }

    Queue<TreeNode> queue=new LinkedList<>();

    queue.add(root);

    while (!queue.isEmpty()) {

    int count=queue.size();

    List<Integer> list=new LinkedList<>();

    while (count>0) {

    TreeNode node=queue.poll();

    list.add(node.val);

    if (node.left!=null) {

    queue.add(node.left);

    }

    if (node.right!=null) {

    queue.add(node.right);

    }

    count--;

    }

    res.add(list);

    }

    return res;

    }

    }

  • 递归解法:参考大神的代码!!!

    class Solution {

    public List<List<Integer>> levelOrder(TreeNode root) {

    List<List<Integer>> res=new ArrayList<>();

    if (root==null) {

    return res;

    }

    addList(res, 0, root);

    return res;

    }

    private void addList(List<List<Integer>> res,int level,TreeNode head) {

    if (head==null) {

    return;

    }

    if (res.size()<=level) { //这里有个问题,如果不是等于的话

    res.add(new ArrayList<>());

    }

    res.get(level).add(head.val);//这里的将会越界,因为level=res.size()取不到

    addList(res, level+1, head.left);

    addList(res, level+1, head.right);

    }

    }

  • 二叉树的最大深度

  • 递归

    class Solution {

    public int maxDepth(TreeNode root) {

    if (root==null) {

    return 0;

    }

    int leftH=maxDepth(root.left);

    int rightH=maxDepth(root.right);

    return Math.max(leftH, rightH)+1;

    }

    }

  • 迭代

这个方法太难了,不优先考虑!!

class Solution {

public int maxDepth(TreeNode root) {

Queue<Pair<TreeNode,Integer>> queue=new LinkedList<>();

if (root!=null) {

queue.add(new Pair<TreeNode, Integer>(root, 1));

}

int depth=0;

while (!queue.isEmpty()) {

Pair<TreeNode,Integer> pair=queue.poll();

root=pair.getKey();

int pair_depth=pair.getValue();

if (root!=null) {

depth=Math.max(depth, pair_depth);

queue.add(new Pair<TreeNode, Integer>(root.left, pair_depth+1));

queue.add(new Pair<TreeNode, Integer>(root.right, pair_depth+1));

}

}

return depth;

}

}

  • 对称二叉树

  • 递归

    class Solution {

    public boolean isSymmetric(TreeNode root) {

    return isMirror(root, root);

    }

    private boolean isMirror(TreeNode t1,TreeNode t2) {

    if (t1==null&&t2==null) {

    return true;

    }

    if (t1==null||t2==null) {

    return false;

    }

    return (t1.val==t2.val)&&isMirror(t1.left, t2.right)

    &&isMirror(t1.right,t2.left);

    }

    }

  • 迭代

    class Solution {

    public boolean isSymmetric(TreeNode root) {

    Queue<TreeNode> queue=new LinkedList<>();

    if (root==null||(root.left==null&&root.right==null)) {

    return true;

    }

    queue.add(root.left);

    queue.add(root.right);

    while (!queue.isEmpty()) {

    TreeNode t1=queue.poll();

    TreeNode t2=queue.poll();

    if (t1==null&&t2==null) continue;

    if(t1==null||t2==null) return false;

    if(t1.val!=t2.val) return false;

    queue.add(t1.left);

    queue.add(t2.right);

    queue.add(t1.right);

    queue.add(t2.left);

    }

    return true;

    }

    }

  • 路径总和:递归很简洁

    class Solution {

    public boolean hasPathSum(TreeNode root, int sum) {

    if (root==null) {

    return false;

    }

    if (root.left==null&&root.right==null) {

    return sum-root.val==0;

    }

    return hasPathSum(root.right, sum-root.val)||

    hasPathSum(root.left, sum-root.val);

    }

    }

  • 验证二叉搜索树

  • 利用中序遍历法:简单易懂

    class Solution {

    public boolean isValidBST(TreeNode root) {

    if (root==null) {

    return true;

    }

    List<Integer> list=new ArrayList<>();

    inOrder(root, list);

    for (int i = 0; i < list.size()-1; i++) {

    if (list.get(i+1)<=list.get(i)) {

    return false;

    }

    }

    return true;

    }

    private void inOrder(TreeNode node,List<Integer> list) {

    if (node==null) {

    return;

    }

    inOrder(node.left, list);

    list.add(node.val);

    inOrder(node.right, list);

    }

    }

  • 大神递归法:

    class Solution {

    double last=-Double.MAX_VALUE;

    public boolean isValidBST(TreeNode root) {

    if (root==null) {

    return true;

    }

    if (isValidBST(root.left)) {

    if (last<root.val) {

    last=root.val;

    return isValidBST(root.right);

    }

    }

    return false;

    }

    }

  • 堆桟法

    public boolean isValidBST(TreeNode root) {

    Stack<TreeNode> stack = new Stack();

    TreeNode p = root;

    Integer preVal = null ;

    while( p != null || !stack.isEmpty() ){

    if(p != null){

    stack.push(p);

    p = p.left;

    }else{

    p = stack.pop();

    int val = p.val;

    if(preVal == null){

    preVal = val;

    }else{

    if(val <= preVal){

    return false;

    }

    preVal = val;

    }

    p = p.right;

    }

    }

    return true;

    }

  • 将有序数组转换为二叉搜索树

  • 解法一

    class Solution {

    public TreeNode sortedArrayToBST(int[] nums) {

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

    }

    private TreeNode buildBST(int[] nums,int l,int r) {

    if (l>r) {

    return null;

    }

    if (l==r) {

    return new TreeNode(nums[l]);

    }

    int mid=(r+l)/2;

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

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

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

    return root;

    }

    }

  • 总结:递归是万能的,但递归真的很恶心!!!

算法练习LeetCode初级算法之树的更多相关文章

  1. 【LeetCode算法】LeetCode初级算法——字符串

      在LeetCode初级算法的字符串专题中,共给出了九道题目,分别为:反转字符串,整数反转,字符串中的第一个唯一字符,有效的字母异位词,验证回文字符串,字符串转换整数,实现strStr(),报数,最 ...

  2. 算法练习LeetCode初级算法之链表

    删除链表中的节点 /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode ne ...

  3. 算法练习LeetCode初级算法之字符串

    反转字符串 我的解法比较low,利用集合的工具类Collections.reverse反转,用时过长 class Solution { public void reverseString(char[] ...

  4. 算法练习LeetCode初级算法之数组

    删除数组中的重复项 官方解答: 旋转数组 存在重复元素 只出现一次的数     官方解答:  同一个字符进行两次异或运算就会回到原来的值 两个数组的交集 II import java.util.Arr ...

  5. 算法练习LeetCode初级算法之其他

    位1的个数 解法一: class Solution { // you need to treat n as an unsigned value public int hammingWeight(int ...

  6. 算法练习LeetCode初级算法之数学

    Fizz Buzz class Solution { public List<String> fizzBuzz(int n) { List<String> list=new L ...

  7. 算法练习LeetCode初级算法之设计问题

    打乱数组 不断的让第一个与后面随机选择的数交换 class Solution { private int[] nums; private int[] initnums; public Solution ...

  8. 算法练习LeetCode初级算法之动态规划

    爬楼梯:斐波那契数列 假设你正在爬楼梯.需要 n 阶你才能到达楼顶. 每次你可以爬 1 或 2 个台阶.你有多少种不同的方法可以爬到楼顶呢? 注意:给定 n 是一个正整数. 非递归解法 class S ...

  9. 算法练习LeetCode初级算法之排序和搜索

    合并两个有序数组 class Solution { public void merge(int[] nums1, int m, int[] nums2, int n) { System.arrayco ...

随机推荐

  1. 以前5年只专注于&period;net,现今开始学习java&period;

    从2011年毕业至今一直在学习.net和c#,大概几年6月份底开始研究java了. 虽然不知道以后的路是否好走,但是我依然会努力.不放弃! 写这篇文字是为了鼓励自己,也为这段时光留下记忆.加油,红红!

  2. hadoop集群的搭建与配置(2)

    对解压过后的文件进行从命名 把"/usr/hadoop"读权限分配给hadoop用户(非常重要) 配置完之后我们要创建一个tmp文件供以后的使用 然后对我们的hadoop进行配置文 ...

  3. DAY 23 面向对象&lpar;二&rpar;

    一.对象独有的名称空间 在产生对象时就赋初值 class Student: def __init__(self,name,sex): self.name = name self.sex = sex # ...

  4. C&num;语法糖yield

    代码中经常遇到迭代数据集合的情况,当希望获取到一个IEnumerable<T>类型的集合,而又不想把数据一次性加载到内存中时, 可以考虑使用yield,yield关键字可实现用户的按需获取 ...

  5. RabbitMQ详解(一)------简介与安装&lpar;Docker&rpar;

    RABBITMQ详解(一)------简介与安装(DOCKER) 刚刚进入实习,在学习过程中没有接触过MQ,RabbitMQ 这个消息中间件,正好公司最近的项目中有用到,学习了解一下. 首先什么是MQ ...

  6. Redash二次开发-开发环境搭建

    环境:win7+pycharm 2018.2 +redash 1.安装pycharm并如何正常使用,找度娘. 2.配置pycharm vcs,设置github用户,从github新建redash项目 ...

  7. HAWQ取代传统数仓实践(十九)——OLAP

    一.OLAP简介 1. 概念 OLAP是英文是On-Line Analytical Processing的缩写,意为联机分析处理.此概念最早由关系数据库之父E.F.Codd于1993年提出.OLAP允 ...

  8. 教你搭建SpringSecurity3框架(附源码)

    源码下载地址:http://pan.baidu.com/s/1qWsgIg0 一.web.xml <?xml version="1.0" encoding="UTF ...

  9. IDEA中Git实战

    工作中多人使用版本控制软件协作开发,常见的应用场景归纳如下: 假设小组中有两个人,组长小张,组员小袁 场景一:小张创建项目并提交到远程Git仓库 场景二:小袁从远程Git仓库上获取项目源码 场景三:小 ...

  10. &lbrack;LeetCode&rsqb;14&period; Longest Common Prefix最长公共前缀

    Write a function to find the longest common prefix string amongst an array of strings. If there is n ...