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

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

sdutacm-數(shù)據(jù)結(jié)構(gòu)實驗之二叉樹三:統(tǒng)計葉子數(shù)

2019-11-06 06:22:06
字體:
供稿:網(wǎng)友

數(shù)據(jù)結(jié)構(gòu)實驗之二叉樹三:統(tǒng)計葉子數(shù)

TimeLimit: 1000MS Memory Limit: 65536KB

SubmitStatistic

PRoblem Description

已知二叉樹的一個按先序遍歷輸入的字符序列,如abc,,de,g,,f,,, (其中,表示空結(jié)點)。請建立二叉樹并求二叉樹的葉子結(jié)點個數(shù)。

Input

連續(xù)輸入多組數(shù)據(jù),每組數(shù)據(jù)輸入一個長度小于50個字符的字符串。

Output

輸出二叉樹的葉子結(jié)點個數(shù)。

Example Input

abc,,de,g,,f,,,

Example Output

3

Hint

 

Author

 xam

#include<string.h>#include<stdio.h>#include<stdlib.h>typedef struct node{   int data;   struct node*l;   struct node*r;}tree;tree *creat(char *&ss){   if(*ss==',')   {   ss++;   return NULL;   }  tree*p;  p = (tree*)malloc(sizeof(tree));  p->data = *ss++;  p->l = creat(ss);  p->r = creat(ss);  return p;}void lastout(tree*p){   if(p)   {       lastout(p->l);       lastout(p->r);       printf("%c",p->data);   }}void inout (tree*p){   if(p)   {     inout(p->l);     printf("%c",p->data);     inout(p->r);   }}int num;void sumyz(tree*p){   if(p)   {     if(p->l==NULL&&p->r==NULL)     {        num++;     }     sumyz(p->l);     sumyz(p->r);   }}int main(){   char ss[51],*p;   while(~scanf("%s",ss))   {      p = ss;      tree*root;      root = creat(p);      /*inout(root);      printf("/n");      lastout(root);      printf("/n");*/      num = 0;      sumyz(root);      printf("%d/n",num);   }}/***************************************************User name: jk160505徐紅博Result: AcceptedTake time: 0msTake Memory: 108KBSubmit time: 2017-02-07 11:10:03****************************************************/

 


上一篇:hibernate筆記

下一篇:JPA &amp;Spring Date

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 日照市| 台东县| 海淀区| 长垣县| 杨浦区| 桃园县| 莱西市| 万盛区| 福州市| 镇赉县| 渑池县| 盘锦市| 密云县| 青浦区| 常德市| 新巴尔虎左旗| 德钦县| 五大连池市| 阿巴嘎旗| 怀远县| 祁连县| 德格县| 汉阴县| 锡林浩特市| 佛山市| 和顺县| 高邑县| 泸定县| 绵竹市| 鞍山市| 拜城县| 澄江县| 渭南市| 永寿县| 怀化市| 黄梅县| 咸宁市| 邯郸市| 南昌县| 安乡县| 页游|