IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> 使用Java花样解决leetcode102.二叉树的层序遍历 -> 正文阅读

[数据结构与算法]使用Java花样解决leetcode102.二叉树的层序遍历

自己用了两种方法写了这个二叉树层序遍历,但没想到看了看题解,又蹦出两种方法,都让我受益匪浅,具体运行时的注解全在代码里面了,刚开始看到这个题,立马想到二叉树的宽度优先遍历嘛。二话不说,直接队列走起:

class Solution {
    public List<List<Integer>> levelOrder(TreeNode root) { 
        List<List<Integer>> result = new ArrayList<>(); // 返回结果的List集合

        if(root != null){
            Queue<TreeNode> queue = new LinkedList<>(); //使用这个队列来宽度遍历二叉树
            Map<TreeNode, Integer> map = new HashMap<>();//使用map集合,key->节点,value->节点所在的层数
            queue.offer(root);//头节点入队列
            
            map.put(root,1);//设置头节点在第一层

            int curLevel = 1;//用于表示正在记录的层数
            List<Integer> temp = new ArrayList<>();//用于装一层元素的容器

            while(!queue.isEmpty()){//进入宽度遍历
                root = queue.poll();
                int curNodeLervl = map.get(root);//取出节点以及对应的节点所在层数
                
                if(curLevel == curNodeLervl){//节点所在层数和我所记录的层数相等,则记录进容器。
                    temp.add(root.val);
                }else{// 不相等就把上一层的节点信息结算。
                    result.add(temp);//把一层的容器加入总容器中
                    temp = new ArrayList<>();//重置容器
                    temp.add(root.val);//别忘了这个正在比较的节点也是要进入容器的哦
                    curLevel = curNodeLervl;//更新记录的层数
                }

                if(root.left != null){
                    queue.offer(root.left);
                    map.put(root.left, curNodeLervl +1);
                }
                if(root.right != null){
                    queue.offer(root.right);
                    map.put(root.right, curNodeLervl +1);
                }
            }
            result.add(temp);
        }
        return result;
    }
}

感觉这样子写有点复杂了,于是进行了改进,不再使用Map去记录层级信息了,代码如下:

class Solution {
    public List<List<Integer>> levelOrder(TreeNode root) { 
        List<List<Integer>> result = new ArrayList<>(); //返回结果的List集合

        if(root != null){
            Queue<TreeNode> queue = new LinkedList<>(); //使用这个队列来宽度遍历二叉树
            queue.offer(root);//头节点入队列

            TreeNode curEnd = root; //这个变量用来记录每一层的最后一个节点。
            TreeNode curNext = null;//用来记录最新进队列的节点,便于后面进行条件判断的时候找到一层的最后一个节点
            
            List<Integer> temp = new ArrayList<>();//装元素
            while(!queue.isEmpty()){//宽度遍历操作
                root = queue.poll();
                
                if(root.left != null){
                    queue.offer(root.left);
                    curNext = root.left;
                }
                if(root.right != null){
                    queue.offer(root.right);
                   curNext = root.right;
                }//在此之前都是宽度遍历的常规操作了,但是curnext把最新节点记录。
                
                temp.add(root.val);//用来装每一层的节点们。
                if(root == curEnd){//到了一层的末尾了。该结算了
                    result.add(temp);
                    temp = new ArrayList<>();
                    curEnd = curNext;//这个时候的curnext节点表示的值就是新一层的末尾节点啦。
                }//实在没看懂别强求,拿出纸和笔推演几步就懂了。
            }
        }
        return result;
    }
}

后来呢我看到了题解一个使用二叉树的DFS,一个使用BFS,代码果然是优美的。

这个代码写的就比我自己写的优美多了,用先序遍历做深度优先遍历,每一层用一个deep巧妙的解决了。赞。

来看代码:

class Solution {
    private List<List<Integer>> result = new ArrayList<>();

    public List<List<Integer>> levelOrder(TreeNode root) {
        check01(root, 0);
        return result;
    }
    public void check01(TreeNode root, int deep){
        if(root == null) return;
        deep++;
        if(result.size() < deep){
            List<Integer> temp = new ArrayList<>();
            result.add(temp);
        }
        result.get(deep -1).add(root.val);
        check01(root.left, deep);
        check01(root.right, deep);
    }
}

接下来就是和我一样的宽度优先遍历的思想了,但是它直接用一个len变量解决了记录层数的问题。赞。

来看代码:

class Solution {
    private List<List<Integer>> result = new ArrayList<>();

    public List<List<Integer>> levelOrder(TreeNode root) {
        check02(root);
        return result;
    }
    public void check02(TreeNode root){
        if(root != null){
            Queue<TreeNode> queue = new LinkedList<>();
            queue.offer(root);
            while(!queue.isEmpty()){
                int len = queue.size();
                List<Integer> temp = new ArrayList<>();
                while(len != 0){
                    root = queue.poll();
                    temp.add(root.val);
                    if(root.left != null) queue.offer(root.left);
                    if(root.right != null) queue.offer(root.right);
                    --len;
                }
                result.add(temp);
            }
        }
    }
}

感谢大佬的指引:代码随想录,马士兵左神。

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-04-09 18:42:57  更:2022-04-09 18:45:38 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 9:34:08-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码