算法-二叉树-宽度优先遍历&树宽度
package com.jiucaiyuan.net.algrithm.tree; import java.util.HashMap; import java.util.LinkedList; import java.util.Queue; /** * 二叉树的宽度优先遍历(求一个二叉树的宽度) * 使用辅助工具队列LinkedList,压入队列,出队时进行访问 * * @Author jiucaiyuan 2022/4/9 23:15 * @mail services@jiucaiyuan.net */ public class TreeMaxWidth { /** * 宽度优先遍历 * * @param root */ public static void width(Node root) { if (root == null) { return; } Queue<Node> queue = new LinkedList<>(); queue.add(root); while (!queue.isEmpty()) { Node curr = queue.poll(); System.out.print(curr.value + " "); if (curr.left != null) { queue.add(curr.left); } if (curr.right != null) { queue.add(curr.right); } } } /** * 宽度优先遍历,得到树的最大宽度 * * @param root */ public static int getTreeWidth(Node root) { if (root == null) { return 0; } Queue<Node> queue = new LinkedList<>(); queue.add(root); HashMap<Node, Integer> levelMap = new HashMap<>(); levelMap.put(root, 1); int currLevel = 1; int currLevelNodes = 0; int maxWidth = Integer.MIN_VALUE; while (!queue.isEmpty()) { Node curr = queue.poll(); if (levelMap.get(curr) == currLevel) { currLevelNodes++; } else { maxWidth = Math.max(maxWidth, currLevelNodes); currLevel++; currLevelNodes = 1; } if (curr.left != null) { levelMap.put(curr.left, levelMap.get(curr) + 1); queue.add(curr.left); } if (curr.right != null) { levelMap.put(curr.right, levelMap.get(curr) + 1); queue.add(curr.right); } } //因为都是到下一层第一个节点时计算上一层宽度,所以最后要处理最后一层的结算 maxWidth = Math.max(maxWidth, currLevelNodes); return maxWidth; } public static void main(String[] args) { Node root = new Node(); root.value = 3; root.left = new Node(); root.left.value = 9; root.left.left = new Node(); root.left.left.value = 35; root.right = new Node(); root.right.value = 20; root.right.left = new Node(); root.right.left.value = 15; root.right.right = new Node(); root.right.right.value = 7; System.out.print("宽度优先遍历结果:"); width(root); System.out.println("----树的宽度是=" + getTreeWidth(root)); Node root1 = new Node(); root1.value = 1; root1.left = new Node(); root1.left.value = 2; root1.right = new Node(); root1.right.value = 2; root1.left.left = new Node(); root1.left.left.value = 3; root1.left.right = new Node(); root1.left.right.value = 3; root1.left.left.left = new Node(); root1.left.left.left.value = 4; root1.left.left.right = new Node(); root1.left.left.right.value = 4; System.out.print("宽度优先遍历结果:"); width(root1); System.out.println("----树的宽度是=" + getTreeWidth(root1)); } }
« 算法-二叉树-判断搜索二叉树
|
算法-二叉树遍历»
日历
个人资料
diaba 寻求合作请留言或联系mail: services@jiucaiyuan.net
链接
最新文章
存档
- 2024年10月(1)
- 2024年8月(2)
- 2024年6月(4)
- 2024年5月(1)
- 2023年7月(1)
- 2022年10月(1)
- 2022年8月(1)
- 2022年6月(11)
- 2022年5月(6)
- 2022年4月(33)
- 2022年3月(26)
- 2021年3月(1)
- 2020年9月(2)
- 2018年8月(1)
- 2018年3月(1)
- 2017年3月(3)
- 2017年2月(6)
- 2016年12月(3)
- 2016年11月(2)
- 2016年10月(1)
- 2016年9月(3)
- 2016年8月(4)
- 2016年7月(3)
- 2016年6月(4)
- 2016年5月(7)
- 2016年4月(9)
- 2016年3月(4)
- 2016年2月(5)
- 2016年1月(17)
- 2015年12月(15)
- 2015年11月(12)
- 2015年10月(6)
- 2015年9月(11)
- 2015年8月(8)
分类
热门文章
- SpringMVC:Null ModelAndView returned to DispatcherServlet with name 'applicationContext': assuming HandlerAdapter completed request handling
- Mac-删除卸载GlobalProtect
- java.lang.SecurityException: JCE cannot authenticate the provider BC
- MyBatis-Improper inline parameter map format. Should be: #{propName,attr1=val1,attr2=val2}
- Idea之支持lombok编译
标签
最新评论
- logisqykyk
Javassist分析、编辑和创建jav... - xxedgtb
Redis—常见参数配置 - 韭菜园 ... - wdgpjxydo
SpringMVC:Null Model... - rllzzwocp
Mysql存储引擎MyISAM和Inno... - dpkgmbfjh
SpringMVC:Null Model... - tzklbzpj
SpringMVC:Null Model... - bqwrhszmo
MyBatis-Improper inl... - 乐谱吧
good非常好 - diaba
@diaba:应该说是“时间的度量依据”... - diaba
如果速度增加接近光速、等于光速、甚至大于...
最新微语
- 从今天起,做一个幸福的人。喂马,砍柴,(思想)周游世界
2022-03-21 23:31
- 2022.03.02 23:37:59
2022-03-02 23:38
- 几近崩溃后,找到解决方法,总是那么豁然开朗!所以遇到问题要坚持!
2018-07-18 10:49
- 2018年关键字“走心”
2018-03-19 16:07
- 保护好自己最大的方法是让自己更强大,不要柔弱的像一只绵羊一样,得谁巴拉,就谁巴拉!
2017-12-20 10:24
发表评论: