合并两个有序链表

一个有价值的算法题

题目要求:给出两个有序链表,将其有序合并,在此过程中不改变顺序

代码如下

#include<stdio.h>
#include<stdlib.h>

struct list{
    int data;
    struct list *next;
};

void sort(struct list *l1,struct list *l2);
void output(struct list *head);
void input(struct list *head,int num);

int main()
{
    int n;
    list *h1,*h2;  //初始化链表
    h1=(struct list*)malloc(sizeof(struct list));
    h2=(struct list*)malloc(sizeof(struct list));
    h1->next=NULL;
    h2->next=NULL;

    printf("请输入第一个链表节点数:n"); 
    scanf("%d",&n);
    input(h1,n);
    printf("请输入第二个链表节点数:n"); 
    scanf("%d",&n);
    input(h2,n);

    sort(h1,h2);

    output(h1);
}

void input(struct list *head,int num)
{
    struct list *tmp;
    struct list *end;
    end=head;
    printf("请输入数据:n");
    for(int i=0;i!=num;i++)
    {
        tmp=(struct list *)malloc(sizeof(struct list));
        scanf("%d",&tmp->data);
        end->next=tmp;
        tmp->next=NULL;
        end=tmp;
    }
}

void sort(struct list *l1,struct list *l2)
{
    struct list *p1,*p2,*tmp;
    p1=l1;
    p2=l2->next;
    while(p1->next&&p2)
    {
        if(p1->next->data>p2->data)
        {
            tmp=p2->next;
            p2->next=p1->next;
            p1->next=p2;
            p2=tmp;
        }
        else
            p1=p1->next;
    }
    if(p2)
        p1->next=p2;
}

void output(struct list *head)
{
    while(head->next)
    {
        printf(" %d ",head->next->data);
        head=head->next;
    }
}

(参考了网上的思路)

示例:
示例