- 论坛徽章:
- 0
|
Loaded 'ntdll.dll', no matching symbolic information found.
Loaded 'C:\Windows\System32\kernel32.dll', no matching symbolic information found.
The thread 0x8C8 has exited with code 8 (0x .
The program 'E:\Visual C++ 6.0\MyProjects\hj1\Debug\lianxi.exe' has exited with code 8 (0x .
这是什么意思啊!其实还是以前那个问题,很抱歉我要再提一下,不好意思,麻烦各位弟兄,小弟新手,需要你们的帮助!
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<stdlib.h>
typedef struct Node /*结点类型定义*/
{
char name[50];
int x;
int y;
struct Node* next;
} Node, *Linkcity;
void Initcity(Linkcity *L) /*初始化链表*/
{
* L=(Linkcity)malloc(sizeof(Node));
(* L)->next=NULL;
}
Linkcity Createcity(Linkcity L) /*创建链表*/
{
Node *s;
int x=0;
int y=0;
int flag=1;
char na[50];
while(flag)
{
printf("请输入城市名\n" ;
scanf("%s",na);
if(!strcmp(na,"out" )
{
flag=0;
}
else
{
s=(Node *)malloc(sizeof(Node));
printf("请输入城市x y坐标\n" ;
scanf("%d %d",&x,&y);
s->x=x;s->y=y;strcpy(s->name,na);
s->next=L->next;
L->next=s;
}
}
return L;
}
void main()
{
Linkcity L;
Initcity(&L);
Createcity(L);
Node *s=L;
s=s->next;
while(1)
{
printf("%s\n%d\n%d\n",s->name,s->x,s->y);
s=s->next;
if(s->next!=NULL){
printf("%s\n%d\n%d\n",s->name,s->x,s->y);
break;
}
}
}
按照各位兄弟的提示下,我修改了代码,但是现在出现了奇怪的现象,当你建立两个节点是,输出是两个节点的信息,然后程序错误,提示:
Loaded 'ntdll.dll', no matching symbolic information found.
Loaded 'C:\Windows\System32\kernel32.dll', no matching symbolic information found.
The thread 0x8C8 has exited with code 8 (0x .
The program 'E:\Visual C++ 6.0\MyProjects\hj1\Debug\lianxi.exe' has exited with code 8 (0x .
当你输入三个或更多个节点时程序运行是不会出错推出,但是它就是只输出最后两个节点的信息,看上面编译器提示是不是与我的系统有关啊,我是vista,用的是vc6.0 |
|