C语言中.二叉树的顺序存储结构和二叉链表,三叉链表存储结构各自的优缺点及适用场合.以及2叉树的顺序储存结

边咏梅 2019-12-21 18:32:00

推荐回答

,int&count{//递归方法,ifT{if!T->lchild&&!T->rchildcount++;CountLeafT->lchild,count;//统计左子树中叶子结点个数CountLeafT->rchild,count;//统计右子树中叶子结点个数}}----------非递归,就是采用前序/中序/后序遍历所有节点,并统计。下面就给你提供分别用三个函数的统计方法PS:因为计数器定义为全局,所以三个函数不能同时使用,使用其中一个就能统计你要的节点数。include"stdlib.h"#defineMAXNODE20#defineISIZE8#defineNSIZE07#defineNSIZE18#defineNSIZE215//SHOWCHAR=1显示字符SHOWCHAR=0显示数字#defineSHOWCHAR1//二叉树结构体structBTNode{intdata;BTNode*rchild;BTNode*lchild;};//非递归遍堆栈structABTStack{BTNode*ptree;ABTStack*link;};staticpCounter=0;//计数器,记录节点个数/*前序遍历函数pre_Order_Access参数描述:BTNode*head:根节点指针*/voidpre_Order_AccessBTNode*head{BTNode*pt;ABTStack*ps,*top;pt=head;top=NULL;printf"二叉树的前序遍历结果: ";whilept!=NULL||top!=NULL/*未遍历完,或堆栈非空*/{whilept!=NULL{ifSHOWCHARprintf"%c",pt->data;/*访问根节点*/elseprintf"%d",pt->data;/*访问根节点*/ps=ABTStack*mallocsizeofABTStack;/*根节点进栈*/ps->ptree=pt;ps->link=top;top=ps;pt=pt->lchild;/*遍历节点右子树,经过的节点依次进栈*/pCounter++;}iftop!=NULL{pt=top->ptree;/*栈顶节点出栈*/ps=top;top=top->link;freeps;/*释放栈顶节点空间*/pt=pt->rchild;/*遍历节点右子树*/}}}/*中序遍历函数mid_Order_Access参数描述:BTNode*head:根节点指针*/voidmid_Order_AccessBTNode*head{BTNode*pt;ABTStack*ps,*top;intcounter=1;pt=head;top=NULL;printf"二叉树的中序遍历结果: ";whilept!=NULL||top!=NULL/*未遍历完,或堆栈非空*/{whilept!=NULL{ps=ABTStack*mallocsizeofABTStack;/*根节点进栈*/ps->ptree=pt;ps->link=top;top=ps;pt=pt->lchild;/*遍历节点右子树,经过的节点依次进栈*/pCounter++;}iftop!=NULL{pt=top->ptree;/*栈顶节点出栈*/ps=top;top=top->link;freeps;/*释放栈顶节点空间*/ifSHOWCHARprintf"%c",pt->data;/*访问根节点*/elseprintf"%d",pt->data;/*访问根节点*/pt=pt->rchild;/*遍历节点右子树*/}}}/*后序遍历函数last_Order_Access参数描述:BTNode*head:根节点指针*/voidlast_Order_AccessBTNode*head{BTNode*pt;ABTStack*ps,*top;intcounter=1;pt=head;top=NULL;printf"二叉树的后序遍历结果: ";whilept!=NULL||top!=NULL/*未遍历完,或堆栈非空*/{whilept!=NULL{ps=ABTStack*mallocsizeofABTStack;/*根节点进栈*/ps->ptree=pt;ps->link=top;top=ps;pt=pt->lchild;/*遍历节点右子树,经过的节点依次进栈*/pCounter++;}iftop!=NULL{pt=top->ptree;/*栈顶节点出栈*/ps=top;top=top->link;freeps;/*释放栈顶节点空间*/printf"%c",pt->data;/*访问根节点*/pt=pt->rchild;/*遍历节点右子树*/}}。
米培燕2019-12-21 18:57:59

提示您:回答为网友贡献,仅供参考。

其他回答

  • #include#includetypedefstructnode*tree_pointer;structnode{charch;tree_pointerleft_child,right_child;};tree_pointerroot=NULL;tree_pointercreatetree_pointerptr{charch;scanf"%c",&ch;ifch==''''ptr=NULL;else{ptr=tree_pointermallocsizeofnode;ptr->ch=ch;ptr->left_child=createptr->left_child;ptr->right_child=createptr->right_child;}returnptr;}voidpreordertree_pointerptr{ifptr{printf"%c",ptr->ch;preorderptr->left_child;preorderptr->right_child;}}voidinordertree_pointerptr{ifptr{inorderptr->left_child;printf"%c",ptr->ch;inorderptr->right_child;}}voidpostordertree_pointerptr{ifptr{postorderptr->left_child;postorderptr->right_child;printf"%c",ptr->ch;}}voidmain{printf"构建一个二叉树(结点数为n:";root=createroot;printf"前序遍历二叉树:";preorderroot;printf"";printf"中序遍历二叉树:";inorderroot;printf"";printf"后序遍历二叉树:";postorderroot;printf"";。
    齐晓民2019-12-21 19:14:55
  • 用三叉链表作二叉数的存储结构,当二叉树有n个结点时,有多少个空指针当用二叉链表存储二叉树时有,n+1个空的指针,如用三叉链表存储二叉树时,第三个指针用来指向双亲,只有根无双亲,所以又多出一个空的指针,则总的空指针为n+2。
    龙帮媛2019-12-21 18:41:58

相关问答