数据结构_二叉树遍历

#include<stdlib.h>
#include<stdio.h>
#define MAX  50
#define MAS  20
#define CHAR 1typedef char elem;
//定义二叉树的数据结构
typedef struct node{elem data;//二叉树的值struct node *lchild;    //左孩子struct node *rchild;//右孩子struct node *parent;//父节点
}BinTNode,*BinTree;
//定义二叉树的初始化函数
BinTNode *Init_BinTree(BinTNode *tree){tree=NULL; //将NULL赋值给treereturn tree; //返回tree
}
//创建二叉树
BinTNode *Create_BinTree(BinTNode *tree){elem ch;scanf("%c",&ch);            //将键入值赋给二叉树的节点if(ch==' ')                    // 以空格作为空左孩子和空右孩子的表示tree=NULL;else{        //申请空间,以及通过对左右孩子的递归完成二叉树的创建tree=(BinTNode *)malloc(sizeof(BinTNode));if(!tree) exit(0);tree->data=ch; tree->parent=NULL;tree->lchild=Create_BinTree(tree->lchild);if(tree->lchild) tree->lchild->parent=tree;tree->rchild=Create_BinTree(tree->rchild);if(tree->rchild) tree->rchild->parent=tree;}return tree;//返回tree
}//在屏幕上输出创建的二叉树,采用递归算法
void PrintTree(BinTNode *tree,int i){if(tree!=NULL){                  //采用条件编译对CHAR事先进行编译PrintTree(tree->rchild,i+5);#if CHARif(tree->data!=' ')printf("%*c\n",i,tree->data);#elseif(tree->data!=' ')printf("%*d\n",i,tree->data);#endifPrintTree(tree->lchild,i+5);i=i-5;}
}/*先序遍历(递归)*/
void  Pre_Order(BinTNode *tree){if(tree!=NULL){printf("%c"" ",tree->data);Pre_Order(tree->lchild);Pre_Order(tree->rchild);}
}/*中序遍历(递归)*/
void In_Order(BinTNode *tree){if(tree!=NULL){In_Order(tree->lchild);printf("%c"" ",tree->data);In_Order(tree->rchild);}
}
//中序遍历(非递归),利用栈结构存储数据
void In_OrderX(BinTNode *tree,void(*visit)(elem)){BinTNode *p,*stack[MAS];int top;top=0;  p=tree;while(top!=0||p!=NULL){while(p!=NULL){stack[top]=p; top++;p=p->lchild;}if(top!=0){p=stack[top-1];top--;visit(p->data);p=p->rchild;}}
}
/*后序遍历(递归)*/
void Bac_Order(BinTNode *tree){if(tree!=NULL){Bac_Order(tree->lchild);Bac_Order(tree->rchild);printf("%c"" ",tree->data);}
}
/*后序遍历(非递归),利用栈结构存储数据   */
void Bac_OrderX(BinTNode *tree,void(*visit)(elem)){BinTNode *p,*stack[MAS];int top;top=0;stack[top]=tree; top++;while(top>0){p=stack[top-1]; top--;while(p!=NULL){visit(p->data);stack[top]=p->rchild;top++;p=p->lchild;}}
}void visit(elem e){printf("%c"" ",e);
}int main()
{ int i;BinTree tree;tree=Init_BinTree(tree);#if CHARprintf("请先序输入二叉树(如:abc  d  e  ):");#elseprintf("请先序输入二叉树(如:a b    表示a为根结点,b为左子树的二叉树)\n");#endiftree=Create_BinTree(tree);printf("输入建立的二叉树!!!\n");PrintTree(tree,5);do{printf("------------------------------------------------------------");printf("\n 主菜单:");printf("\n  1  先序遍历(递归)");printf("\n  2  中序遍历(递归)");printf("\n  3  中序遍历(非递归)");printf("\n  4  后序遍历(递归)");printf("\n  5  后序遍历(非递归)");//    printf("\n  6                  ");printf("\n  0    退出");printf("\n----------------------------------------------------------");printf("\n");printf("亲,请输入功能数字:");scanf("%d",&i);switch(i){case 1: printf("先序遍历(递归)结果为:");Pre_Order(tree); break;case 2: printf("中序遍历(递归)结果为:");In_Order(tree); break;case 3: printf("中序遍历(非递归)结果为:");In_OrderX(tree,visit) ;  break;case 4:    printf("后序遍历(递归)结果为:");Bac_Order(tree); break;case 5: printf("后序遍历(非递归)结果为:");Bac_Order(tree,visit); break;case 0: exit(0);default :printf("亲,请输入--菜单--中的功能数字!");}printf("\n \n");}while(i>0||i<8);return 0;
}

 

课题二

一、   目的

二叉树的遍历算法实现

二、   实习环境

个人计算机,Windows操作系统,Visual C++6.0编译开发环境

三、   实习内容、步骤与要求

遍历是对树的一种最基本的运算,所谓遍历二叉树,就是按一定的规则和顺序走遍二叉树的所有结点,使每一个结点都被访问一次,而且只被访问一次。由于二叉树是非线性结构,因此,树的遍历实质上是将二叉树的各个结点转换成为一个线性序列来表示。

递归算法的算法实现:

先序遍历:

若二叉树非空,则依次执行如下操作:

(1) 访问根结点;(2) 遍历左子树;(3) 遍历右子树。

中序遍历:

若二叉树非空,则依次执行如下操作:

(1)遍历左子树; (2)访问根结点;(3)遍历右子树。

后序遍历:

若二叉树非空,则依次执行如下操作:

(1)遍历左子树;(2)遍历右子树;(3)访问根结点。

非递归算法的实现:

中序遍历:

  对于任一结点P,

  1)若其左孩子不为空,则将P入栈并将P的左孩子置为当前的P,然后对当前结点P再进行相同的处理;

  2)若其左孩子为空,则取栈顶元素并进行出栈操作,访问该栈顶结点,然后将当前的P置为栈顶结点的右孩子;

  3)直到P为NULL并且栈为空则遍历结束

后序遍历:

要保证根结点在左孩子和右孩子访问之后才能访问,因此对于任一结点P,先将其入栈。

1)         如果P不存在左孩子和右孩子,则可以直接访问它;或者P存在左孩子或者右孩子,但是其左孩子和右孩子都已被访问过了,则同样可以直接访问该结点。

2)         若非上述两种情况,则将P的右孩子和左孩子依次入栈,这样就保证了每次取栈顶元素的时候,左孩子在右孩子前面被访问,左孩子和右孩子都在根结点前面被访问。

 

四:源程序:

#include<stdlib.h>

#include<stdio.h>

#define MAX  50

#define MAS  20

#define CHAR 1

 

typedef char elem;

//定义二叉树的数据结构

typedef struct node{

    elem data;//二叉树的值

     struct node *lchild;    //左孩子

     struct node *rchild;//右孩子

     struct node *parent;//父节点

}BinTNode,*BinTree;

//定义二叉树的初始化函数

BinTNode *Init_BinTree(BinTNode *tree){

     tree=NULL; //将NULL赋值给tree

     return tree; //返回tree

}

//创建二叉树

BinTNode *Create_BinTree(BinTNode *tree){

    elem ch;

    scanf("%c",&ch);         //将键入值赋给二叉树的节点

     if(ch==' ')                // 以空格作为空左孩子和空右孩子的表示

       tree=NULL;

     else{        //申请空间,以及通过对左右孩子的递归完成二叉树的创建

       tree=(BinTNode *)malloc(sizeof(BinTNode));

        if(!tree)

           exit(0);

      tree->data=ch;

      tree->parent=NULL;

      tree->lchild=Create_BinTree(tree->lchild);

      if(tree->lchild)

         tree->lchild->parent=tree;

      tree->rchild=Create_BinTree(tree->rchild);

      if(tree->rchild)

         tree->rchild->parent=tree;

     }

     return tree;//返回tree

}

  //在屏幕上输出创建的二叉树,采用递归算法

void PrintTree(BinTNode *tree,int i){

    if(tree!=NULL){                  //采用条件编译对CHAR事先进行编译

       PrintTree(tree->rchild,i+5);

    #if CHAR

       if(tree->data!=' ')

       printf("%*c\n",i,tree->data);

    #else

       if(tree->data!=' ')

       printf("%*d\n",i,tree->data);

    #endif

       PrintTree(tree->lchild,i+5);

       i=i-5;

    }

}

 

/*先序遍历(递归)*/

void  Pre_Order(BinTNode *tree){

    if(tree!=NULL){

       printf("%c"" ",tree->data);

       Pre_Order(tree->lchild);

       Pre_Order(tree->rchild);

    }

}

 

 

/*中序遍历(递归)*/

void In_Order(BinTNode *tree){

    if(tree!=NULL){

       In_Order(tree->lchild);

       printf("%c"" ",tree->data);

       In_Order(tree->rchild);

    }

}

//中序遍历(非递归),利用栈结构存储数据

void In_OrderX(BinTNode *tree,void(*visit)(elem)){

    BinTNode *p,*stack[MAS];

    int top;

    top=0;  p=tree;

    while(top!=0||p!=NULL){

       while(p!=NULL){

           stack[top]=p; top++;

           p=p->lchild;

        }

       if(top!=0){

           p=stack[top-1];

           top--;

           visit(p->data);

           p=p->rchild;

       }

    }

}

/*后序遍历(递归)*/

void Bac_Order(BinTNode *tree){

    if(tree!=NULL){

       Bac_Order(tree->lchild);

       Bac_Order(tree->rchild);

       printf("%c"" ",tree->data);

    }

}

/*后序遍历(非递归),利用栈结构存储数据   */

void Bac_OrderX(BinTNode *tree,void(*visit)(elem)){

    BinTNode *p,*stack[MAS];

    int top;

    top=0;

    stack[top]=tree; top++;

    while(top>0){

       p=stack[top-1];

       top--;

       while(p!=NULL){

           visit(p->data);

           stack[top]=p->rchild;

           top++;

           p=p->lchild;

       }

    }

}

 

void visit(elem e){

    printf("%c"" ",e);

}

 

 

int main()

{

    int i;

    BinTree tree;

    tree=Init_BinTree(tree);

    #if CHAR

       printf("请先序输入二叉树(如:abc  d  e  ):");

    #else

       printf("请先序输入二叉树(如:a b    表示a为根结点,b为左子树的二叉树)\n");

    #endif

    tree=Create_BinTree(tree);

    printf("输入建立的二叉树!!!\n");

    PrintTree(tree,5);

    do{

       printf("------------------------------------------------------------");

       printf("\n 主菜单:");

       printf("\n  1  先序遍历(递归)");

       printf("\n  2  中序遍历(递归)");

       printf("\n  3  中序遍历(非递归)");

       printf("\n  4  后序遍历(递归)");

       printf("\n  5  后序遍历(非递归)");

    //  printf("\n  6                  ");

       printf("\n  0    退出");

       printf("\n----------------------------------------------------------");

       printf("\n");

       printf("亲,请输入功能数字:");

       scanf("%d",&i);

       switch(i){

           case 1: printf("先序遍历(递归)结果为:");

                  Pre_Order(tree); break;

           case 2: printf("中序遍历(递归)结果为:");

                  In_Order(tree); break;

            case 3: printf("中序遍历(非递归)结果为:");

                  In_OrderX(tree,visit) ;  break;

           case 4:    printf("后序遍历(递归)结果为:");

                  Bac_Order(tree); break;

           case 5: printf("后序遍历(非递归)结果为:");

                  Bac_Order(tree,visit); break;

           case 0: exit(0);

           default :printf("亲,请输入--菜单--中的功能数字!");

       }

    printf("\n \n");

    }

    while(i>0||i<8);

    return 0;

}

 

转载于:https://www.cnblogs.com/askDing/p/KE.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/471845.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

linux 文件编辑器,用于Linux的文本编辑器(除了Vi)?

用于Linux的文本编辑器(除了Vi)&#xff1f;首先&#xff0c;我说我在Mac OSX上使用TextMate来满足我的文本需求&#xff0c;因此我对此表示喜欢。 在Linux平台上有什么可比的吗&#xff1f; 我将主要使用它来编码python / ruby。谷歌搜索产生过时的答案。编辑&#xff1a;由于…

python 接口 、继承、重载运算符

文章目录1. 序列__getitem__2. __setitem__3. 抽象基类4. 不要直接子类化内置类型5. 继承顺序6. 重载运算符learn from 《流畅的python》 1. 序列__getitem__ 如果没有 __iter__ 和 __contains__ 方法&#xff0c; Python 会调用 __getitem__ 方法&#xff0c; 设法让 迭代 和…

oracle获取今天凌晨的时间_oracle查询日期语句有哪些?

oracle查询日期语句有&#xff1a;1、取得当前日期是本月的第几周&#xff0c;代码为【select to_char(sysdate,W)】&#xff1b;2、取得当前日期是一个星期中的第几天&#xff0c;代码为【select sysdate,to_char(sysdate,D】。oracle查询日期语句有&#xff1a;1:取得当前日期…

LeetCode meituan-007. 小团的选调计划(模拟)

文章目录1. 题目2. 解题1. 题目 美团打算选调 n 名业务骨干到 n 个不同的业务区域&#xff0c;本着能者优先的原则&#xff0c;公司将这 n 个人按照业务能力从高到底编号为 1~n 。 编号靠前的人具有优先选择的权力&#xff0c;每一个人都会填写一个意向&#xff0c;这个意向是…

一些建议方案猿简历

最近&#xff0c;他已经投了简历郁闷希望出没有收到答复。我觉得自己的技术也不是那么难看&#xff0c;现在的问题可能恢复&#xff0c;是搜索了下。对于程序猿写简历的一些建议。希望对大家有所帮助。希望对自己也有帮助。最后让offer来的更猛烈些吧&#xff01;&#xff01; …

linux用命令行进行无线连接,linux以命令行下配置连接wlan无线网卡

由于要搭建一个家庭服务器来测试&#xff0c;安装的是Debian 6系统&#xff0c;没有安装图形桌面&#xff0c;只有命令行&#xff0c;并且想用无线来连接。可以用以下方法&#xff0c;在命令行下面配置wifi。用iwconfig开启无线网卡的电源&#xff0c;并查找区域内的无线网络&a…

post请求改成body_如何使用BODY快速发送POST请求

我正在尝试使用Alamofire快速发布尸体的发布请求。我的json主体看起来像&#xff1a;{"IdQuiz" : 102,"IdUser" : "iosclient","User" : "iosclient","List":[{"IdQuestion" : 5,"IdProposition&q…

启动列表的activity

每学一个知识点就要重新创建一个项目&#xff0c;感觉那样太繁琐了&#xff0c;特别是android studio开发&#xff0c;没创建一个项目都会重新打开一个窗口 所以我就在那想&#xff0c;何不有一个功能列表&#xff0c;点击每一个列表项的时候就跳转到那个功能界面里 android里有…

linux webservice端口号,解决在Linux环境下访问webservice发送中文乱码问题的方案

首先&#xff0c;看在windows环境下正常显示中文的原因&#xff1a;打开cmd窗口&#xff0c;输入&#xff1a;chcp你会发现输出活动代码页: 936查阅936的意义&#xff1a;它指明了当前系统使用的编码&#xff0c;936 代表GBK 扩展的EUC-CN 编码( GB 2312-80编码,包含 6763 个汉…

LeetCode 1973. Count Nodes Equal to Sum of Descendants(DFS)

文章目录1. 题目2. 解题1. 题目 Given the root of a binary tree, return the number of nodes where the value of the node is equal to the sum of the values of its descendants. A descendant of a node x is any node that is on the path from node x to some leaf …

mybatis在指定库建表_使用MyBatis Plus自动添加数据库表中的创建时间、创建者、更新时间、更新者...

使用到Sringboot、Mybatis Plus、Shiro、Mysql1、创建一张部门表&#xff0c;表结构CREATE TABLE sys_dept (dept_id bigint(20) NOT NULL AUTO_INCREMENT COMMENT 部门id,parent_id bigint(20) DEFAULT 0 COMMENT 父部门id,dept_name varchar(30) DEFAULT COMMENT 部门名称,o…

linux server.xml日志参数,Linux Log4j+Kafka+KafkaLog4jAppender 日志收集

背景&#xff1a;kafka版本&#xff1a;kafka_2.10-0.8.2.1服务器IP&#xff1a;10.243.3.17一&#xff1a;Kafkaserver.properties 文件配置二&#xff1a;zookeeper.properties 文件配置三&#xff1a; zookeeper,kafka启动../bin/zookeeper-server-start.sh -daemon /usr/lo…

LeetCode 1966. Binary Searchable Numbers in an Unsorted Array

文章目录1. 题目2. 解题1. 题目 Consider a function that implements an algorithm similar to Binary Search. The function has two input parameters: sequence is a sequence of integers, and target is an integer value. The purpose of the function is to find if t…

12 哈希表相关类——Live555源码阅读(一)基本组件类

12 哈希表相关类——Live555源码阅读(一)基本组件类 这是Live555源码阅读的第一部分&#xff0c;包括了时间类&#xff0c;延时队列类&#xff0c;处理程序描述类&#xff0c;哈希表类这四个大类。 本文由乌合之众 lym瞎编&#xff0c;欢迎转载 http://www.cnblogs.com/oloroso…

编辑器eslint格式_vscode保存代码,自动按照eslint规范格式化代码设置

vscode保存代码&#xff0c;自动按照eslint规范格式化代码设置编辑器代码风格一致&#xff0c;是前端代码规范的一部分。同一个项目&#xff0c;或者同一个小组&#xff0c;保持代码风格一致很必要。就拿vue项目来说&#xff0c;之前做的几个项目&#xff0c;很多小伙伴代码格式…

linux测试网络带宽极限,iperf 测试极限带宽

iperf 版本建议采用linux&#xff0c;事实上&#xff0c;windows版也很好用。带宽测试通常采用UDP模式&#xff0c;因为能测出极限带宽、时延抖动、丢包率。在进行测试时&#xff0c;首先以链路理论带宽作为数据发送速率进行测试&#xff0c;例如&#xff0c;从客户端到服务器之…

LeetCode MySQL 1571. 仓库经理

1. 题目 表: Warehouse ----------------------- | Column Name | Type | ----------------------- | name | varchar | | product_id | int | | units | int | -----------------------(name, product_id) 是该表主键. 该表的行包含了每个仓库…

将方法作为方法的参数 —— 理解委托

《.NET开发之美》上对于委托写到&#xff1a;“它们就像是一道槛儿&#xff0c;过了这个槛的人&#xff0c;觉得真是太容易了&#xff0c;而没有过去的人每次见到委托和事件就觉得心里别得慌&#xff0c;混身不自在。”我觉得这句话就像是在说我自己一样。于是我决定好好看看关…

c# 定位内存快速增长_改善C#程序,提高程序运行效率的50种方法

转自&#xff1a;http://blog.sina.com.cn/s/blog_6f7a7fb501017p8a.html一、用属性代替可访问的字段1、.NET数据绑定只支持数据绑定&#xff0c;使用属性可以获得数据绑定的好处&#xff1b;2、在属性的get和set访问器重可使用lock添加多线程的支持。二、readonly(运行时常量)…

LeetCode MySQL 1581. 进店却未进行过交易的顾客

1. 题目 表&#xff1a;Visits ---------------------- | Column Name | Type | ---------------------- | visit_id | int | | customer_id | int | ----------------------visit_id 是该表的主键。 该表包含有关光临过购物中心的顾客的信息。 表&#xff1a…