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

简化版由前序遍历和中序遍历返回后序遍历

时间:2021-05-23 23:32:39      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ios   names   name   include   ring   return   color   cst   遍历   

#include<iostream>
#include<cstring>
#include<string>
#include<stdio.h>
using namespace std;


void print(int n,char *x,char *y)
{
    if(n<=0)
    return;

    int lon= strchr (y,x[0])-y;
    print(lon,x+1,y);
    print(n-lon-1,x+lon+1,y+lon+1);

    cout << x[0] ;
}

int main()
{
    char x[30],y[30];
    while(cin >> x >> y)
    {
        int n=strlen(x);
        print(n,x,y);
        cout << endl; 
    }
}

 

简化版由前序遍历和中序遍历返回后序遍历

标签:ios   names   name   include   ring   return   color   cst   遍历   

原文地址:https://www.cnblogs.com/Abel-Gabriel/p/14728196.html

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