当前位置: 代码迷 >> C语言 >> [求助]卧龙孔明进来看下!
  详细解决方案

[求助]卧龙孔明进来看下!

热度:153   发布时间:2007-08-19 09:59:27.0
[求助]卧龙孔明进来看下!

#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>
#include <string.h>
#define NULL 0
#define LEN sizeof(struct student)
typedef struct student
{
int num;
char name[20];
struct student *next;
}node;
int n;
node *creatlist(void)//建立链表
{
node *head;
node *p1,*p2;
n=0;
p1=p2=(node *)malloc(LEN);
scanf("%d,%s",&p1->num,p1->name);
head=NULL;
while(p1->num!=0)
{
n=n+1;
if(n==1) head=p1;
else p2->next=p1;
p2=p1;
p1=(node *)malloc(LEN);
scanf("%d,%s",&p1->num,p1->name);
}
p2->next=NULL;
return(head);
}
node *revertlist(node *head)//链表的逆置???为什么执行后打印出的只有最后一个结点?
{
node *ahead,*p,*q1,*q2;
p=head;
ahead=NULL;
n=0;
q1=q2=(node *)malloc(LEN);
if(head!=NULL)
do
{
n=n+1;
if(n==1) q2->next=NULL;
else q1->next=q2;
q1=q2=(node *)malloc(LEN);
q1->num=p->num;
strcpy(q1->name,p->name);
q2=q1;
p=p->next;
}while(p!=NULL);
ahead=q2;
return(ahead);
}
void printlist(node *head)//打印链表
{
node *p;
printf("\nNow,these %d records are:\n",n);
p=head;
if(head!=NULL)
do
{
printf("%d,%s\n",p->num,p->name);
p=p->next;
}while(p!=NULL);
}
main()
{
node *head,*ahead;
printf("input record:\n");
head=creatlist();
printlist(head);
printf("revert record:\n");
ahead=revertlist(head);
printlist(ahead);
}

为什么我编的这个程序执行后只能打印出逆置后的最后一个结点数据?
我的本意是想重新建立一个链表把原表中的结点一个一个取出后重新连接.
请人帮忙分析下什么地方错了.或给出一个逆置的程序我学习下.
(最好能提供一些有关链表知识的资料.)谢谢!

搜索更多相关的解决方案: 卧龙  孔明  

----------------解决方案--------------------------------------------------------
等他来了看看吧


----------------解决方案--------------------------------------------------------
等等啊,等他来了再看吧!
----------------解决方案--------------------------------------------------------
链表的逆置函数里面用strcpy干嘛?
----------------解决方案--------------------------------------------------------

是一个实时运行的错误,http://bbs.bc-cn.net/viewthread.php?tid=163574
看看这个,我也遇到这个问题了


----------------解决方案--------------------------------------------------------

.........
if(n==1) q2->next=NULL;
else q1->next=q2;
q1=q2=(node *)malloc(LEN); //第一次循环,这样把q1、q2重新分配内存q1就与上面的q2“脱节”了
q1->num=p->num;
strcpy(q1->name,p->name);
q2 = q1;
p=p->next;
....
如果只想倒序输出链表,这个程序可以:

#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>
#include <string.h>
//#define NULL 0
#define LEN sizeof(struct student)
typedef struct student
{
int num;
char name[20];
struct student *next;
}node;

int n;

node *creatlist(void)//建立链表
{
node *head;
node *p1,*p2;
n=0;
p1=p2=(node *)malloc(LEN);
scanf("%d%s",&p1->num,p1->name);
head=NULL;
while(p1->num!=0)
{
n=n+1;
if(n==1) head=p1;
else p2->next=p1;
p2=p1;
p1=(node *)malloc(LEN);
scanf("%d%s",&p1->num,p1->name);
}
p2->next = NULL;
return(head);
}


revertlist(node *head)//链表的逆序输出
{
node *p, *q;
p = q = head;
while(p->next != NULL)
p = p->next;
while(1)
{
while(q->next != p)
q = q->next;
if(p->next == NULL)
printf("%d,%s\n",p->num,p->name);
printf("%d,%s\n",q->num,q->name);
p = q;
q = head;
if(p == head)
break;
}
}

void printlist(node *head)//打印链表
{
node *p;
printf("\nNow,these %d records are:\n",n);
p=head;
if(head!=NULL)
do
{
printf("%d,%s\n",p->num,p->name);
p=p->next;
}while(p!=NULL);
}

main()
{
node *head;

printf("input record:\n");
head=creatlist();
printlist(head);
printf("revert record:\n");
revertlist(head);
}


----------------解决方案--------------------------------------------------------
谢谢!nwpu063417
你的程序我运行了下,是OK的。
你有链表的相关学习资料吗?有的话提供下,谢谢咯!
----------------解决方案--------------------------------------------------------
回复:(king1110)谢谢!nwpu063417你的程序我运行了...
其实我那段代码不是你所说的逆制,而是把它逆向输出了。真正想把链表逆置的算法我刚才也没想出来

至于关于链表的资料我觉得作为初学者把谭浩强的《c程序设计》相关章节看透就可以了。
----------------解决方案--------------------------------------------------------
  相关解决方案