国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

數據結構實驗之求二叉樹后序遍歷和層次遍歷

2019-11-10 22:23:20
字體:
來源:轉載
供稿:網友

think: 1通過前序遍歷和中序遍歷還原二叉樹以及后序遍歷 2 通過已還原的二叉樹進行層序遍歷 sdut原題鏈接 數據結構實驗之求二叉樹后序遍歷和層次遍歷 Time Limit: 1000MS Memory Limit: 65536KB

PRoblem Description 已知一棵二叉樹的前序遍歷和中序遍歷,求二叉樹的后序遍歷和層序遍歷。

Input 輸入數據有多組,第一行是一個整數t (t<1000),代表有t組測試數據。每組包括兩個長度小于50 的字符串,第一個字符串表示二叉樹的先序遍歷序列,第二個字符串表示二叉樹的中序遍歷序列。

Output 每組第一行輸出二叉樹的后序遍歷序列,第二行輸出二叉樹的層次遍歷序列。

Example Input 2 abdegcf dbgeafc xnliu lnixu

Example Output dgebfca abcdefg linux xnuli

Hint

Author ma6174

以下為accepted代碼

#include <stdio.h>#include <string.h>#include <stdlib.h>typedef struct node{ char date; struct node *left; struct node *right;}BinTree;BinTree *root, *link[54];char st1[54], st2[54];BinTree * get_build(int len, char *st1, char *st2)//二叉樹的還原與后序遍歷{ if(len == 0) return NULL; int i; BinTree *root; root = (BinTree *)malloc(sizeof(BinTree)); root->date = st1[0];//尋找根節點,新的根節點為前序遍歷st1的第一個 for(i = 0; i < len; i++)//尋找新的根節點在中序遍st2中的位置 { if(st2[i] == root->date) break; } root->left = get_build(i, st1+1, st2);//(左子樹的長度,左子樹在前序遍歷st1中的開始位置,左子樹在中序遍歷st2中的開始位置) root->right = get_build(len-i-1, st1+i+1, st2+i+1);//(右子樹的長度,右子樹在前序遍歷st1中的開始位置,右子樹在中序遍歷st2中的開始位置) printf("%c", root->date);//后序遍歷 return root;}void ans(BinTree *root)//二叉樹的層序遍歷{ if(root)///判斷root是否為NULL { int i = 0, j = 0; link[j++] = root; while(i < j) { if(link[i])//判斷link[i]是否為NULL { link[j++] = link[i]->left;//入隊 link[j++] = link[i]->right;//入隊 printf("%c", link[i]->date);//層序遍歷 } i++;//出隊 } }}int main(){ int T, len; scanf("%d", &T); while(T--) { scanf("%s %s", st1, st2); len = strlen(st1); root = get_build(len, st1, st2);//調用二叉樹的還原與后序遍歷函數 printf("/n"); ans(root);//調用二叉樹的層序遍歷函數 printf("/n"); } return 0;}/***************************************************User name: jk160630Result: AcceptedTake time: 0msTake Memory: 112KBSubmit time: 2017-02-08 09:14:45****************************************************/
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 开远市| 原阳县| 乐山市| 康马县| 义马市| 淮北市| 峡江县| 通化县| 安图县| 图木舒克市| 昌宁县| 台南县| 阜阳市| 桓仁| 新民市| 陕西省| 滨海县| 九寨沟县| 米泉市| 微博| 江油市| 南充市| 广平县| 甘泉县| 长阳| 安福县| 防城港市| 安国市| 莱西市| 晋城| 舒城县| 山东| 梁河县| 应城市| 泸州市| 紫金县| 安阳县| 永川市| 佛冈县| 福建省| 五台县|