这个程序应该怎么改啊
好象是需要建个指向字符型的指针!
#include "stdio.h"
#include "stdlib.h"
#include "math.h"
#include "stack.h"
//二叉链表的定义
typedef char Telemtype;
typedef struct bitnode
{
Telemtype data;
struct bitnode *lchild,*rchild;
}bitnode,*bitree,*in;
//栈的操作,栈中元素类型为bitree
//建立二叉树
void createbitree(bitree T)
{
Telemtype ch;
scanf("%c",&ch);
if(ch==' ')
T=NULL;
else
{
T=(bitree)malloc(sizeof(bitnode));
T->data=ch;
createbitree(T->lchild);
createbitree(T->rchild);
}
}
//求二叉树的叶子个数
int leaf(bitree T)
{
int n;
if(!T)
n=0;
else
if(!T->lchild&&!T->rchild) n=1;
else
n=leaf(T->lchild)+leaf(T->rchild);
return(n);
}
//先序遍历
void xianxu(bitree T)
{
bitree p;
stack s;
initstack(s);
if(T)
p=T;
push(s,T);
while(!stackempty(s))
{ pop(s,p);
printf("%c",p->data);
if(p->rchild)push(s,p->rchild);
if(p->lchild)push(s,p->lchild);
}
}
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
typedef char selemtype;
//链栈的定义
typedef struct node
{
selemtype data;
struct node *next;
}node;
typedef struct
{
node *top;
}stack;
#define overflow -2
#define TRUE 1
#define FALSE 0
typedef char status;
void initstack(stack &s)
{
s.top=(node *)malloc(sizeof(node));
if(!s.top) exit(overflow);
s.top->next=NULL;
}
status stackempty(stack s)
{
if(s.top->next==NULL)
return(TRUE);
else
return(FALSE);
}
void push(stack &s,char e)
{
node *p;
p=(node *)malloc(sizeof(node));
if(!p)
return;
p->data=e;
p->next=s.top->next;
s.top->next=p;
}
void pop(stack &s,selemtype &e)
{
node *p;
if(stackempty(s))
return;
else
{
p=s.top->next;
e=p->data;
s.top->next=p->next;
free(p);
}
}
//主函数部分
#include "1.h"
#include "stack.h"
#include "math.h"
#include "stdio.h"
void main()
{
bitree root;
int select;
printf("建立二叉数\n");
crearebitree(root);
do
{
printf("1 先序 2 叶子数目 3 退出\n");
scanf("%d",%select);
switch(select)
{
case 1:
printf("先序遍历\n");
xianshu(root);
break;
case 2:
printf("二叉树中叶子数目\n");
break;
case 3:
break;
default:
printf("输入选项错误\n");
}
}while(select);
}