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

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

數據結構實驗之二叉樹五:層序遍歷(二叉樹+隊列)

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

sdut原題鏈接

數據結構實驗之二叉樹五:層序遍歷 Time Limit: 1000MS Memory Limit: 65536KB

PRoblem Description 已知一個按先序輸入的字符序列,如abd,,eg,,,cf,,,(其中,表示空結點)。請建立二叉樹并求二叉樹的層次遍歷序列。

Input 輸入數據有多行,第一行是一個整數t (t<1000),代表有t行測試數據。每行是一個長度小于50個字符的字符串。

Output 輸出二叉樹的層次遍歷序列。

Example Input 2 abd,,eg,,,cf,,, xnl,,i,,u,,

Example Output abcdefg xnuli

Hint

Author xam

以下為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 s[54];int flag;BinTree * creat()//建立二叉樹函數{ BinTree * root; if(s[flag++] == ',') root = NULL; else { root = (BinTree *)malloc(sizeof(BinTree)); root->date = s[flag-1]; root->left = creat(); root->right = creat(); } return root;}void ans(BinTree *root)//二叉樹的層序遍歷函數{ if(root) { int i = 0, j = 0; link[j++] = root; while(i < j) { if(link[i]) { link[j++] = link[i]->left; link[j++] = link[i]->right; printf("%c", link[i]->date); } i++; } }}int main(){ int T; scanf("%d", &T); while(T--) { flag = 0; scanf("%s", s); root = creat();//調用建立二叉樹函數 ans(root);//調用二叉樹的層序遍歷函數 printf("/n"); } return 0;}/***************************************************User name: jk160630Result: AcceptedTake time: 0msTake Memory: 120KBSubmit time: 2017-02-07 21:36:35****************************************************/
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 老河口市| 余姚市| 通江县| 广饶县| 三门县| 黄浦区| 肇州县| 仁布县| 亳州市| 于田县| 界首市| 华亭县| 广西| 响水县| 澎湖县| 安岳县| 平江县| 蓬安县| 灵台县| 武功县| 武邑县| 图木舒克市| 永丰县| 抚远县| 垫江县| 龙里县| 华容县| 广宗县| 云龙县| 台安县| 封开县| 牡丹江市| 溆浦县| 潮安县| 普安县| 麟游县| 横峰县| 肇州县| 兴海县| 丽江市| 当雄县|