| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 537 人关注过本帖, 1 人收藏
标题:如何将两个链表合并?
只看楼主 加入收藏
henji
Rank: 1
等 级:新手上路
帖 子:227
专家分:0
注 册:2009-4-19
结帖率:38.67%
收藏(1)
已结贴  问题点数:10 回复次数:3 
如何将两个链表合并?
#include "stdio.h"
#include "stdlib.h"

struct student
{
    long num;
    float score;
    struct student *next;
};

int main(int argc, char* argv[])
{
    struct student a,b,c,d,e,f,*head1,*head2,*p,*q,*w;
    a.num=99101;a.score=89;
    b.num=99107;b.score=90;
    c.num=99103;c.score=91;
    head1=&a;
    a.next=&b;
    b.next=&c;
    c.next=NULL;
    p=head1;
    printf("第一个链表为:\n");
    while(p!=NULL)
    {
        printf("%ld%5.1f\n",p->num,p->score);
        p=p->next;
    }
    d.num=99103;d.score=92;
    e.num=99104;e.score=93;
    f.num=99105;f.score=94;
    head2=&d;
    d.next=&e;
    e.next=&f;
    f.next=NULL;
    q=head2;
    printf("第二个链表为:\n");
    while(q!=NULL)
    {
        printf("%ld%5.1f\n",q->num,q->score);
        q=q->next;
    }//如何将第一个链表和第二个链表合并,并按num升序排序?
    return 0;
}
搜索更多相关主题的帖子: 链表 
2009-07-18 10:35
pangding
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
来 自:北京
等 级:贵宾
威 望:94
帖 子:6784
专家分:16751
注 册:2008-12-20
收藏
得分:3 
你去查查 merge sort 相关的内容,看看能不能解决你的问题。
2009-07-18 12:49
himpo
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:192
专家分:123
注 册:2008-5-16
收藏
得分:3 
#include "stdio.h"
#include "stdlib.h"

struct student
{
    long num;
    float score;
    struct student *next;
};

struct student *q_sort(struct student *head1,struct student *head2)
{
 struct student *p1=head1,*p2,*px;
 struct student pm;
 for(;p1->next!=NULL;)
    p1=p1->next;
 p1->next=head2;
 for(p1=head1;p1->next!=NULL;p1=p1->next)
    for(p2=p1->next;p2!=NULL;p2=p2->next)
       if(p1->num>p2->num)
         {
          pm=*p1;*p1=*p2;*p2=pm;
          px=p1->next;p1->next=p2->next;p2->next=px;
         }
 return head1;
}

int main(int argc, char* argv[])
{
    struct student a,b,c,d,e,f,*head1,*head2,*p,*q,*w;
    a.num=99101;a.score=89;
    b.num=99107;b.score=90;
    c.num=99103;c.score=91;
    head1=&a;
    a.next=&b;
    b.next=&c;
    c.next=NULL;
    p=head1;
    printf("第一个链表为:\n");
    while(p!=NULL)
    {
        printf("%ld%5.1f\n",p->num,p->score);
        p=p->next;
    }
    d.num=99103;d.score=92;
    e.num=99104;e.score=93;
    f.num=99105;f.score=94;
    head2=&d;
    d.next=&e;
    e.next=&f;
    f.next=NULL;
    q=head2;
    printf("第二个链表为:\n");
    while(q!=NULL)
    {
        printf("%ld%5.1f\n",q->num,q->score);
        q=q->next;
    }//如何将第一个链表和第二个链表合并,并按num升序排序?
   
    head1=q_sort(head1,head2);
    printf("合并并排序后的链表为:\n");
    p=head1;
    while(p!=NULL)
    {
        printf("%ld%5.1f\n",p->num,p->score);
        p=p->next;
     }
    system("pause");
    return 0;
}
2009-07-18 20:23
tianweishuiguo
Rank: 1
等 级:新手上路
帖 子:4
专家分:5
注 册:2008-7-6
收藏
得分:3 
看下数据结构链表的那章!
2009-07-19 08:25
快速回复:如何将两个链表合并?
数据加载中...
 
   



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

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