二叉树前中后序遍历

2024-05-25 17:04
文章标签 二叉树 遍历 后序 前中

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

前言

个人小记


一、代码如下

#include<stdio.h>
#include <stdlib.h>
#include <time.h>
#define MAX_NODE 10
#define p()\
{\printf("\n");\
}
typedef struct Node
{int key;int lfag,rfag;struct Node *lchild,*rchild;
}Node;Node* init_node(int key)
{Node* node=(Node*)malloc(sizeof(Node));node->key=key;node->lfag=node->rfag=0;node->lchild=node->rchild=NULL;return node;
}Node* insert(Node* root,int key)
{if(root==NULL)return init_node(key);if(rand()%2) root->lchild=insert(root->lchild,key);else root->rchild=insert(root->rchild,key);return root;
}void clear_node(Node* root)
{if(root==NULL)return ;if(root->lfag==0) clear_node(root->lchild);if(root->rfag==0) clear_node(root->rchild);free(root);return ;
}void pre_order(Node* root)
{if(root==NULL)return ;printf("%d ",root->key);if(root->lfag==0)pre_order(root->lchild);if(root->rfag==0)pre_order(root->rchild);return ;
}void in_order(Node* root)
{if(root==NULL)return ;if(root->lfag==0)in_order(root->lchild);printf("%d ",root->key);if(root->rfag==0)in_order(root->rchild);return ;
}void post_order(Node* root)
{if(root==NULL)return ;if(root->lfag==0)post_order(root->lchild);if(root->rfag==0)post_order(root->rchild);printf("%d ",root->key);return ;
}
Node* new_root=NULL,*pre_node;
void __serial_in_order(Node* root)
{if(root==NULL)return ;if(root->lfag==0)__serial_in_order(root->lchild);if(new_root==NULL)new_root=root;if(root->lchild==NULL){root->lchild=pre_node;root->lfag=1;}if(pre_node&&pre_node->rchild==NULL){pre_node->rchild=root;pre_node->rfag=1;}pre_node=root;if(root->rfag==0)__serial_in_order(root->rchild);return ;
}void serial_in_order(Node*root)
{__serial_in_order(root);pre_node->rchild=NULL;pre_node->rfag=1;return ;
}Node* getnext(Node* node)
{if(node->rfag==1)return node->rchild;node=node->rchild;while(node->lfag==0){node=node->lchild;}return node;
}int main()
{srand((unsigned)time(0));Node* root=NULL;for(int i=0;i<MAX_NODE;i++){root=insert(root,rand()%100);}serial_in_order(root);Node* node=new_root;printf("中序线索化遍历结果为:\n");while(node){printf("%d ",node->key);node=getnext(node);}p();printf("前序遍历结果为:\n");pre_order(root);  p();printf("中序遍历结果为:\n");in_order(root);   p();printf("后续遍历结果为:\n");post_order(root); p();clear_node(root);return 0;
}

二、测试结果

中序线索化遍历结果为:
76 99 23 86 70 59 38 50 28 4 
前序遍历结果为:
86 76 23 99 50 38 70 59 4 28 
中序遍历结果为:
76 99 23 86 70 59 38 50 28 4 
后续遍历结果为:
99 23 76 59 70 38 28 4 50 86 

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



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

相关文章

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>)} 绑定属性直接使用花括号{}   注

在二叉树中找到两个节点的最近公共祖先(基于Java)

如题  题解 public int lowestCommonAncestor(TreeNode root, int o1, int o2) {//记录遍历到的每个节点的父节点。Map<Integer, Integer> parent = new HashMap<>();Queue<TreeNode> queue = new LinkedList<>();parent.put(roo

数据结构--二叉树(C语言实现,超详细!!!)

文章目录 二叉树的概念代码实现二叉树的定义创建一棵树并初始化组装二叉树前序遍历中序遍历后序遍历计算树的结点个数求二叉树第K层的结点个数求二叉树高度查找X所在的结点查找指定节点在不在完整代码 二叉树的概念 二叉树(Binary Tree)是数据结构中一种非常重要的树形结构,它的特点是每个节点最多有两个子节点,通常称为左子节点和右子节点。这种结构使得二叉树在数据存储和查找等方面具

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

222.完全二叉树的节点个数

(写给未来遗忘的自己) 题目: 代码: class Solution {public:int countNodes(TreeNode* root) {queue<TreeNode*>node_que;if(root==nullptr) return 0;node_que.push(root);int result;while(!node_que.empty()){int layer_s

代码随想录 -- 二叉树 -- 平衡二叉树

110. 平衡二叉树 - 力扣(LeetCode) 思路:仍然是递归调用 1. 定义一个递归函数 count 用来计算二叉树的层数 2. isBalanced 函数:如果传入根节点为空返回真;如果根节点 | 左子树的层数 - 右子树的层数 | 大于1,返回假;最后返回根节点左子树、右子树是否是平衡二叉树。 class Solution(object):def count(self,root