码迷,mamicode.com
首页 > 其他好文 > 详细

二叉树的中序遍历

时间:2016-03-18 21:50:30      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

二叉树的遍历方式 忘得差不多了 .......应该在记一下

 技术分享

技术分享

技术分享

歌词不是重点  重点是 知识(装一下逼)   下面附上代码  和  二叉树的 遍历 顺序 

#include<iostream>
#include<stdio.h>
#include<string.h>
using namespace std;
typedef struct
{
    int x, y;
}node;
node num[20];
void fun(int n)
{
    if(n == -1)
        return;
    fun(num[n].x);
    printf("%d\n", n);
    fun(num[n].y);
}

int main(){
    int chioce, i, n, m ,f, x, y;
    scanf("%d", &chioce);
    while(chioce--)
    {
        scanf("%d", &n);
        for(i = 0; i < 14; i++)
            num[i].x = num[i].y = 0;

        while(n--)
        {
            scanf("%d%d%d", &f, &x, &y);
            num[f].x = x;
            num[f].y = y;
        }
        scanf("%d", &m);
        while(m--)
        {
            scanf("%d%d", &x, &y);
        }
        fun(0);
        printf("\n");
    }
    return 0;
}

 

二叉树的中序遍历

标签:

原文地址:http://www.cnblogs.com/A-FM/p/5293447.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!