| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 291 人关注过本帖, 1 人收藏
标题:链表排序
取消只看楼主 加入收藏
kxdbdq
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2012-2-29
结帖率:100%
收藏(1)
已结贴  问题点数:20 回复次数:1 
链表排序
我尝试了很久,终于写出了一个使用指针来排序链表的函数,但是一运行就出问题了,不是出现segmentation fault就是不给我排序,直接输出我所输入的东西,但有时它会排序个别的结构,然后输出......纠结中!求高手指教,我的链表排序函数错究竟在哪里了。先谢了哦!
//我的链表申请函数
#include<stdio.h>
#include "a.h"
#include<string.h>
#include<stdlib.h>
int main(void)
{
struct a *c,*d,*h;
c=NULL;
char C[20];
printf("please enter words!\n");
while(gets(C)!=NULL&&C[0]!='\0')
{
if((d=malloc(sizeof(struct a)))==NULL)
printf("sorry,can not apply the memory!\n");
if(c==NULL)
{
c=d;
d->f=NULL;
}
else
{
h->f=d;
d->f=NULL;
}
strcpy(d->A,C);
printf("please enter a number!\n");
scanf("%d",&d->b);
h=d;
printf("enter empty key to quit,others to continue.\n");
while(getchar()!='\n');
}
printf("now,this is your input:\n");
if(c==NULL)
printf("you don't enter anything!\n");
h=c;
for(;h!=NULL;)
{
printf("%s  %d\n",h->A,h->b);
h=h->f;
}
c=paixu(c);
h=c;
for(;h!=NULL;)
{
printf("%s  %d\n",h->A,h->b);
h=h->f;
}
for(;c!=NULL;)
{
h=c->f;
free(c);
c=h;
}
printf("bye!\n");
return 0;
}
//a.h头文件
struct a
{
char A[20];
int b;
struct a *f;
};
struct a * paixu (struct a *p)//链表排序函数
{
struct a *head,*next,*current,*temp,*temp1,*temp2,*past;
head=NULL;
temp1=NULL
temp2=NULL;
current=p;
past=p;
while(past!=NULL)
{
while(current->f!=NULL)
{
next=current->f->f;
if(past->b<current->f->b)
{
 //满足条件就交换指针
temp=past;
past=current->f;
current->f=temp;
}
if(temp1!=NULL)
past->f=temp1;
//修复指向当前下一个结构的指针
else
past->f=current->f;
if(temp2!=NULL)

temp2->f=past;
 //修复从上一个指向当前结构的指针
current->f->f=next;
//修复被交换指针指向下一个结构的指针
temp1=past->f;
current=current->f;
}
if(head==NULL)
head=past;
//记录头指针
temp2=past;
//保存当前指针
past=past->f;
current=past;
//前进到下一个结构
temp1=NULL;
//重置状态器
}
return head;
}
}
为了方便检查问题,我把主程序的源码也传上来了。



搜索更多相关主题的帖子: void 东西 include please 
2012-05-07 12:24
kxdbdq
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2012-2-29
收藏
得分:0 
我知道了,多谢ab1034982749!
2012-05-08 20:35
快速回复:链表排序
数据加载中...
 
   



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

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