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学习第21天 -> 正文阅读

[数据结构与算法]JAVA学习第21天

二叉树

?二叉树本来就是递归的方式,不管是在建立还是遍历都要用到递归思想,递归的感觉就像对其中一颗二叉树的操作的重复调用,主要注意每个函数里面需要重复调用的那个操作。

package basic;

/**
 * BinaryCharTree
 * 
 * @author 9535.
 */
public class BinaryCharTree {

	/**
	 * The value in char
	 */
	char value;

	/**
	 * The leftchild
	 */
	BinaryCharTree leftChild;

	/**
	 * The rightchild
	 */
	BinaryCharTree rightChild;

	/**
	 *********************
	 * The first construct.
	 * 
	 * @param paraName The value.
	 *********************
	 */
	public BinaryCharTree(char paraName) {
		value = paraName;
		leftChild = null;
		rightChild = null;
	}// Of the first construct

	/**
	 *********************
	 * Manually construct a tree.Just for testing.
	 * 
	 *********************
	 */
	public static BinaryCharTree manualBinaryCharTree() {

		// Step 1. The root.
		BinaryCharTree resultTree = new BinaryCharTree('a');

		// Step 2. The others.
		BinaryCharTree tempTreeB = new BinaryCharTree('b');
		BinaryCharTree tempTreeC = new BinaryCharTree('c');
		BinaryCharTree tempTreeD = new BinaryCharTree('d');
		BinaryCharTree tempTreeE = new BinaryCharTree('e');
		BinaryCharTree tempTreeF = new BinaryCharTree('f');
		BinaryCharTree tempTreeG = new BinaryCharTree('g');

		// Step 3. Linked.
		resultTree.leftChild = tempTreeB;
		resultTree.rightChild = tempTreeC;
		tempTreeB.rightChild = tempTreeD;
		tempTreeC.leftChild = tempTreeE;
		tempTreeD.leftChild = tempTreeF;
		tempTreeD.rightChild = tempTreeG;

		// Step 4.
		return resultTree;
	}// Of manualBinaryCharTree

	/**
	 *********************
	 * pre-order visit.
	 * 
	 *********************
	 */
	public void preOrder() {
		System.out.print(value + " ");

		// 递归需要有条件语句判断,防止栈溢出错误。
		if (leftChild != null) {
			leftChild.preOrder();
		} // Of if

		if (rightChild != null) {
			rightChild.preOrder();
		} // Of if

	}// Of preOrder

	/**
	 *********************
	 * in-order visit.
	 * 
	 *********************
	 */
	public void inOrder() {

		// 递归需要有条件语句判断,防止栈溢出错误。
		if (leftChild != null) {
			leftChild.inOrder();
		} // Of if

		System.out.print(value + " ");

		if (rightChild != null) {
			rightChild.inOrder();
		} // Of if

	}// Of inOrder

	/**
	 *********************
	 * post-order visit.
	 * 
	 *********************
	 */
	public void postOrder() {

		// 递归需要有条件语句判断,防止栈溢出错误。
		if (leftChild != null) {
			leftChild.postOrder();
		} // Of if

		if (rightChild != null) {
			rightChild.postOrder();
		} // Of if

		System.out.print(value + " ");
	}// Of postOrder

	/**
	 *********************
	 * getDepth.From bottom to the top.
	 * 
	 * @return The depth. It is 1 if there is only one node, i.e., the root.
	 *********************
	 */
	public int getDepth() {
		if ((leftChild == null) && (rightChild == null)) {
			return 1;
		} // Of if

		int resultLeft = 0;
		if (leftChild != null) {
			resultLeft = leftChild.getDepth();
		} // Of if

		int resultRight = 0;
		if (rightChild != null) {
			resultRight = rightChild.getDepth();
		} // Of if

		if (resultLeft >= resultRight) {
			return resultLeft + 1;
		} else {
			return resultRight + 1;
		}
	}// Of getDepth

	/**
	 *********************
	 * Get the number of nodes.
	 * 
	 * @return The number of nodes.
	 *********************
	 */
	public int getNumNodes() {

		if ((leftChild == null) && (rightChild == null)) {
			return 1;
		} // Of if

		int resultLeft = 0;
		if (leftChild != null) {
			resultLeft = leftChild.getNumNodes();
		} // Of if

		int resultRight = 0;
		if (rightChild != null) {
			resultRight = rightChild.getNumNodes();
		} // Of if

		return resultLeft + resultRight + 1;
	}// Of getNumNodes

	/**
	 *********************
	 * The entrance of the program.
	 * 
	 * @param args Not used now.
	 *********************
	 */
	public static void main(String args[]) {
		BinaryCharTree tempTree = manualBinaryCharTree();
		System.out.println("\r\nPreorder visit:");
		tempTree.preOrder();
		System.out.println("\r\nIn-order visit:");
		tempTree.inOrder();
		System.out.println("\r\nPost-order visit:");
		tempTree.postOrder();

		System.out.println("\r\n\r\nThe depth is: " + tempTree.getDepth());
		System.out.println("The number of nodes is: " + tempTree.getNumNodes());
	}// Of main
}// Of class CircleIntQueue

?

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-01-04 13:41:40  更:2022-01-04 13:43:34 
 
开发: 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 18:24:50-

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