【2119】數據結構實驗之鏈表四:有序鏈表的歸併

數據結構實驗之鏈表四:有序鏈表的歸併

Time Limit: 1000ms   Memory limit: 65536K  有疑問?點這裏^_^

題目描述

分別輸入兩個有序的整數序列(分別包含M和N個數據),建立兩個有序的單鏈表,將這兩個有序單鏈表合併成爲一個大的有序單鏈表,並依次輸出合併後的單鏈表數據。

輸入

第一行輸入M與N的值; 
第二行依次輸入M個有序的整數;
第三行依次輸入N個有序的整數。

輸出

輸出合併後的單鏈表所包含的M+N個有序的整數。

示例輸入

6 5
1 23 26 45 66 99
14 21 28 50 100

示例輸出

1 14 21 23 26 28 45 50 66 99 100

提示

不得使用數組!

來源

 

示例程序

#include<stdio.h>
#include<stdlib.h>
struct node
{
    int data;
    struct node *next;
};
struct node *creat(int n)
{
    struct node *head,*p,*tail;
    head=(struct node *)malloc(sizeof(struct node));
    head->next=NULL;
    tail=head;
    int i;
    for(i=0;i<n;i++)
    {
        p=(struct node *)malloc(sizeof(struct node));
        p->next=NULL;
        scanf("%d",&p->data);
        tail->next=p;
        tail=p;
    }
    return head;
}
struct node *merge(struct node *head1,struct node *head2)
{
    struct node *p1,*p2,*tail;
    p1=head1->next;
    p2=head2->next;
    tail=head1;
    free(head2);
    while(p1&&p2)
        if(p1->data>p2->data)
    {
        tail->next=p2;
        tail=p2;
        p2=p2->next;
        tail->next=NULL;
    }
    else
    {
        tail->next=p1;
        tail=p1;
        p1=p1->next;
        tail->next=NULL;
    }
    if(p1)
        tail->next=p1;
    else tail->next=p2;
    return head1;
};
int main()
{
    struct node *head1,*head2,*p;
    int m,n;
    scanf("%d%d",&m,&n);
    head1=creat(m);
    head2=creat(n);
    head1=merge(head1,head2);
    p=head1->next;
    while(p!=NULL)
    {
        (p->next!=NULL)?(printf("%d ",p->data)):(printf("%d",p->data));
        p=p->next;
    }
    return 0;
}


 
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章