作者freeinmind (黑黑的天空出现绿光)
站内C_and_CPP
标题[问题]将 txt file读进 BST
时间Tue Nov 24 11:25:29 2009
首先我要读的txt file内容大概是
Cheetah; Acinonyx; Felidae; Carnivora; Mammalia;
Giraffe; Giraffa; Giraffidae; Artiodactyla; Mammalia;
.
.
.
从左至右依序是 normal name->genus->family->order->class 有30组
这是我的结构
typedef struct
{
char*animal;
struct nodetag*ptrfields;
}ANIMAL;
typedef struct nodetag
{
char*genus;
char*family;
char*order;
char*class;
}NODE;
主要是要将内容读到BST里面
void load(BST_TREE*list)
{
//local definition
FILE*fptr;
ANIMAL*data;
NODE*ptrnode;
char buffer[100];
char ptrgenus[20];
char ptrfamily[20];
char ptrorder[20];
char ptrclass[20];
//statement
fptr=fopen("input_animals.txt","r");
if(fptr==NULL)
{
printf("error opening the file");
return 0;
}
while(fgets(buffer,sizeof(buffer),fptr))
{
sscanf(buffer,"%s;%s;%s;%s;%s",ptranimal,
ptrgenus,ptrfamily,ptrorder,ptrclass);
//用buffer读,请问中间的分号这样可以在读的时候去掉吗?
//allocate memory
data=(ANIMAL*)malloc(sizeof(ANIMAL));
if(!data)
printf("not enough memory\n"),exit(100);
data->animal=(char*)malloc(strlen(ptranimal)+1,sizeof(char));
if(!data->animal)
printf("not enough memory\n"),exit(110);
ptrnode=(NODE*)malloc(sizeof(NODE));
if(!data)
printf("not enough memory\n"),exit(120);
ptrnode->genus=(char*)malloc(strlen(ptrgenus)+1,sizeof(char));
if(!ptrnode->genus)
printf("not enough memory\n"),exit(130);
ptrnode->family=(char*)malloc(strlen(ptrfamily)+1,sizeof(char));
if(!ptrnode->family)
printf("not enough memory\n"),exit(200);
ptrnode->order=(char*)malloc(strlen(ptrorder)+1,sizeof(char));
if(!ptrnode->order)
printf("not enough memory\n"),exit(201);
ptrnode->class=(char*)malloc(strlen(ptrclass)+1,sizeof(char));
if(!ptrnode->class)
printf("not enough memory\n"),exit(300);
//将读到的字串assign到对应的pointer里
strcpy(data->animal=ptranimal);
strcpy(ptrnode->genus,ptrgenus);
strcpy(ptrnode->family,ptrfamily);
strcpy(ptrnode->order,ptrorder);
strcpy(ptrnode->class,ptrclass);
data->ptrfields=ptrnode; //不确定这里能不能将ptrnode assign到 ptrfields里
BST_Insert(list,data);
//list是BST,在read file前就先创好了
return;
}
因为file读不进去 後面就不用跑了.... 自己又看不出来哪里有错
所以自私的希望有人可以帮我看一下顺便提点一下 囧!
还有我每次都搞不懂exit(x)里面的x 是怎麽来的 所以我程式里是乱放的.....
感激不尽.....
( *[1m *[m 为色码,可以按 Ctrl+V 预览会显示的颜色 ) ( 未必需要依照此格式,文章条理清楚即可 )
遇到的问题: (题意请描述清楚)
希望得到的正确结果:
程式跑出来的错误结果:
开发平台: (例: VC++ or gcc/g++ or Dev-C++, Windows or Linux)
有问题的code: (请善用置底文标色功能)
补充说明:
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 24.7.54.192
※ 编辑: freeinmind 来自: 24.7.54.192 (11/24 13:43)
1F:→ MOONRAKER:有没有错误讯息啊 11/24 14:40