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

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

數(shù)據(jù)結(jié)構(gòu)實驗之二叉樹五:層序遍歷(二叉樹+隊列)

2019-11-10 23:52:49
字體:
供稿:網(wǎng)友

sdut原題鏈接

數(shù)據(jù)結(jié)構(gòu)實驗之二叉樹五:層序遍歷 Time Limit: 1000MS Memory Limit: 65536KB

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

Input 輸入數(shù)據(jù)有多行,第一行是一個整數(shù)t (t<1000),代表有t行測試數(shù)據(jù)。每行是一個長度小于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()//建立二叉樹函數(shù){ 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)//二叉樹的層序遍歷函數(shù){ 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();//調(diào)用建立二叉樹函數(shù) ans(root);//調(diào)用二叉樹的層序遍歷函數(shù) printf("/n"); } return 0;}/***************************************************User name: jk160630Result: AcceptedTake time: 0msTake Memory: 120KBSubmit time: 2017-02-07 21:36:35****************************************************/
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 双牌县| 英吉沙县| 新疆| 三穗县| 来安县| 新营市| 阳西县| 白朗县| 朔州市| 射阳县| 龙泉市| 定远县| 屯留县| 乡城县| 黄梅县| 体育| 恩施市| 扎囊县| 莱西市| 石柱| 湘阴县| 澳门| 濉溪县| 清徐县| 济南市| 太和县| 苏尼特右旗| 资中县| 北流市| 罗源县| 满城县| 建水县| 诸城市| 定西市| 加查县| 清涧县| 综艺| 奉节县| 施甸县| 仁寿县| 且末县|