6-10 中序输出度为2的结点 (10 分)
标签:ems char 程序 http order flex 顺序 start har
本题要求实现一个函数,按照中序遍历的顺序输出给定二叉树中度为2的结点。
void InorderPrintNodes( BiTree T);
T是二叉树树根指针,InorderPrintNodes按照中序遍历的顺序输出给定二叉树T中度为2的结点,格式为一个空格跟着一个字符。
其中BiTree结构定义如下:
typedef struct BiTNode
{
ElemType data;
struct BiTNode *lchild,*rchild;
}BiTNode,*BiTree;
#include <stdio.h>
#include <stdlib.h>
typedef char ElemType;
typedef struct BiTNode
{
ElemType data;
struct BiTNode *lchild,*rchild;
}BiTNode,*BiTree;
BiTree Create();/* 细节在此不表 */
void InorderPrintNodes( BiTree T);
int main()
{
BiTree T = Create();
printf("Nodes are:");
InorderPrintNodes(T);
return 0;
}
/* 你的代码将被嵌在这里 */
Nodes are: D A
void InorderPrintNodes( BiTree T){ if(T==NULL) return; InorderPrintNodes(T->lchild); if(T->lchild!=NULL&&T->rchild!=NULL) printf(" %c",T->data); InorderPrintNodes(T->rchild); }
标签:ems char 程序 http order flex 顺序 start har
原文地址:https://www.cnblogs.com/DirWang/p/11930018.html