| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 731 人关注过本帖
标题:运行程序出现的错误请各位看看是怎么了
取消只看楼主 加入收藏
guibin
Rank: 1
等 级:新手上路
帖 子:36
专家分:0
注 册:2008-9-22
收藏
 问题点数:0 回复次数:2 
运行程序出现的错误请各位看看是怎么了
请各位高手看看是怎么了
搜索更多相关主题的帖子: 运行 
2008-11-18 12:34
guibin
Rank: 1
等 级:新手上路
帖 子:36
专家分:0
注 册:2008-9-22
收藏
得分:0 
程序在这
#include <conio.h>
#include<stdio.h>
#include<stdlib.h>
#define maxsize 100
typedef struct node{
char data;
struct node *lchild,*rchild;
}bt;
createbt(bt **T)
 {char ch;
 scanf ("%c",&ch);
 if(ch==' ') *T=NULL;
  else {*T=(bt *)malloc(sizeof (bt));
         (*T)->data =ch;
          createbt(&((*T)->lchild)) ;
          createbt(&((*T)->rchild)) ;
        }
 }

preorder (bt *t)
   { printf("%c",t->data);
     preorder(t->lchild);
     preorder(t->rchild);
     getch();
     }
inorder (bt *t)
   { preorder(t->lchild);
     printf("%c",t->data);
     preorder(t->rchild);
     }
 postorder (bt *t)
   { preorder(t->lchild);
     preorder(t->rchild);
     printf("%c",t->data);
     }
main()
{
 int i,j,a;
 bt *h;
 createbt(&h);

window(0,0,5,5);
textbackground(4);
textcolor(0);
clrscr();
gotoxy(10,10) ;
for (i=5;i<=20;i++)  /*左右框*/
   { gotoxy(10,i);
     printf("*");
     gotoxy(70,i);
     printf("*");
  }
for (j=10;j<=70;j++)
   { gotoxy(j,5);
     printf("*");
     gotoxy(j,20);
    printf("*"); /*上下框*/
  }
gotoxy(33,7);
printf("  1 preorder ") ;
gotoxy(33,11);
printf("  2 inorder ") ;
gotoxy(33,15);
printf("  3 postorder ") ;
gotoxy(35,22);
printf("input number 1-3:");
scanf("%d",&a) ;
switch (a)
  {
  case 1:  preorder(&h); break;
  case 2:  inorder(&h); break;
  case 3:  postorder(&h) ; break;
  }
getch();
}
2008-11-18 17:52
guibin
Rank: 1
等 级:新手上路
帖 子:36
专家分:0
注 册:2008-9-22
收藏
得分:0 
怎么都没人回呀
2008-11-24 16:34
快速回复:运行程序出现的错误请各位看看是怎么了
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.026129 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved