morris遍历树

2024-03-19 04:48
文章标签 遍历 morris

本文主要是介绍morris遍历树,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

    public class Node{Node left;Node right;int val;}public void morris(Node head){if(head == null){ return;}Node cur = head;Node mostRight = null;while(cur != null){mostRight = cur.left;if(mostRight != null){//如果当前cur有左子树,找到cur左子树上最右的节点while(mostRight.right != null && mostRight.right != cur){mostRight = mostRight.right;}if(mostRight.right == null){//如果right为null,则指向cur.mostRight.right = cur;//cur向左移动cur = cur.left;continue;//继续判断cur}else{mostRight.right = null;}}//cur没有左子树cur向右移动,或者cur左子树上最右节点已经指向了cur,cur向右移动。cur = cur.right;}}//先序遍历对于cur只能到达一次的节点(无左子树的节点),cur到达时直接打印。//对于cur可以到达两次的节点(有左子树的节点),cur第一次到达时打印,第二次到达时不打印。public void morrisPre(Node head){if(head == null){return;}Node cur = head;Node mostRight = null;while(cur != null){mostRight = cur.left;if(mostRight != null){while(mostRight.right != null && mostRight.right != cur){mostRight = mostRight.right;}if(mostRight.right == null){mostRight.right = cur;System.out.println(cur.val);cur = cur .left;continue;}else{mostRight.right = null;}}else{System.out.println(cur.val);}cur = cur.right;}}//中序遍历对于cur只能到达一次的节点,直接打印。//对于cur可以到达两次的节点,cur第一次到达时不打印,第二次到达时打印public void morrisIn(Node head){if(head == null){ return;}Node cur = head;Node mostRight = null;while(cur != null){mostRight = cur.left;if(mostRight != null){while(mostRight.right!=null&&mostRight.right!=cur){mostRight = mostRight.right;}if(mostRight.right == null){mostRight.right = cur;cur=cur.left;continue;}else{mostRight.right = null;}}System.out.println(cur.val);cur = cur.right;}}//后续遍历//1.对于cur只能到达一次的节点直接跳过。//2.对于cur可以到达两次的任何一个节点X,cur第一次到达X时没有打印行为,当第二次到达X的时候,逆序打印X左子树的有边界.//3.cur遍历完成后,逆序打印整棵树的有边界public static void printEdge(Node head){Node tail = reverseEdge(head);Node cur = tail;while(cur != null){System.out.println(cur.val+ " ");cur = cur.right;}reverseEdge(tail);}public static Node reverseEdge(Node from){Node pre = null;Node next = null;while(from != null){next = from.right;from.right = pre;pre = from;from = next;}return pre;}public void mirrisPos(Node head){if(head == null){return;}Node cur = head;Node mostRight = cur.left;while(cur!=null) {if (mostRight != null) {while (mostRight.right != null && mostRight.right != cur) {mostRight = mostRight.right;}if (mostRight.right == null) {mostRight.right = cur;cur = cur.left;continue;}else{mostRight.right = null;printEdge(cur.left);}}cur = cur.right;}printEdge(head);}

 

这篇关于morris遍历树的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/824835

相关文章

leetcode105 从前序与中序遍历序列构造二叉树

根据一棵树的前序遍历与中序遍历构造二叉树。 注意: 你可以假设树中没有重复的元素。 例如,给出 前序遍历 preorder = [3,9,20,15,7]中序遍历 inorder = [9,3,15,20,7] 返回如下的二叉树: 3/ \9 20/ \15 7   class Solution {public TreeNode buildTree(int[] pr

PHP实现二叉树遍历(非递归方式,栈模拟实现)

二叉树定义是这样的:一棵非空的二叉树由根结点及左、右子树这三个基本部分组成,根据节点的访问位置不同有三种遍历方式: ① NLR:前序遍历(PreorderTraversal亦称(先序遍历)) ——访问结点的操作发生在遍历其左右子树之前。 ② LNR:中序遍历(InorderTraversal) ——访问结点的操作发生在遍历其左右子树之中(间)。 ③ LRN:后序遍历(PostorderT

react笔记 8-17 属性绑定 class绑定 引入图片 循环遍历

1、绑定属性 constructor(){super()this.state={name:"张三",title:'我是一个title'}}render() {return (<div><div>aaaaaaa{this.state.name}<div title={this.state.title}>我是一个title</div></div></div>)} 绑定属性直接使用花括号{}   注

hashmap的存值,各种遍历方法

package com.jefflee;import java.util.HashMap;import java.util.Iterator;import java.util.Map;public class HashmapTest {// 遍历Hashmap的四种方法public static void main(String[] args) {//hashmap可以存一个null,把

Knight Moves -uva 简单的BFS遍历

昨天刚学了BFS的遍历,在uva上找了个题敲了出来,感觉还不错,最近敲代码挺有手感的,希望这种状态保持下去 #include<iostream>#include<stdio.h>#include<stdlib.h>#include<string.h>#define MAX_SIZE 10 + 5#define LEN 100 + 10using namespace std;in

笔试强训,[NOIP2002普及组]过河卒牛客.游游的水果大礼包牛客.买卖股票的最好时机(二)二叉树非递归前序遍历

目录 [NOIP2002普及组]过河卒 牛客.游游的水果大礼包 牛客.买卖股票的最好时机(二) 二叉树非递归前序遍历 [NOIP2002普及组]过河卒 题里面给的提示很有用,那个马的关系,后面就注意,dp需要作为long的类型。 import java.util.Scanner;// 注意类名必须为 Main, 不要有任何 package xxx 信息publ

二叉树的层次遍历(10道)

(写给未来遗忘的自己) 102.二叉数的层序遍历(从上到下) 题目: 代码: class Solution { public: vector<vector<int>> levelOrder(TreeNode* root) { vector<vector<int>> result; queue<TreeNode*> node; if (root == nullptr) {

关于双指针遍历

今晚跟一个朋友突然问我,你懂双指针遍历吗?并叫我敲出代码。当时自己愣住了,但是还是写出来了,第一个版本是: #include <iostream> using namespace std; int main(int argc, char** argv, char** arge) { cout<<"输出参数个数:"<<argc<<endl; cout<<"输出字符串数组:"<<endl; f

C语言手撕实战代码_二叉树_构造二叉树_层序遍历二叉树_二叉树深度的超详细代码实现

二叉树习题1.通过前序序列和中序序列构造二叉树2.通过层次遍历序列和中序序列创建一棵二叉树3.求一棵二叉树的结点个数4.求一棵二叉树的叶子节点数5.求一棵二叉树中度为1的节点个数6.求二叉树的高度7.求一棵二叉树中值为x的节点作为根节点的子树深度8.判断两棵树是否相似,相似返回1,不相似返回09.设计算法利用叶子结点中的空指针域将所有叶子结点链接成一个带头结的双链表10.假设一个仅包含二元运算的算

容器第十课,迭代器遍历List和Set,List迭代器源码分析

Iterator接口 所有实现了Collection接口的容器类都有一个iterator方法用以返回一个实现了Iterator接口的对象。 Iterator对象称作迭代器,用以方便的实现对容器内元素的遍历操作。 Iterator接口定义了如下方法: boolean hasNext():判断是否有元素没有被遍历Object next():返回游标当前位置的元素并将游标移动到下一个位置vo