單鏈表合併

將兩個單鏈表合併,一般前提是兩個單鏈表是已經排好序的,默認是按升序排列的。

#include <iostream>
using namespace std;
typedef struct LinkNode
{
	int data;
	struct LinkNode *next;
}node;
node *merg(node *head1,node *head2)
{
	node *pa=head1->next;
	node *pb=head2->next;
	node *head =(node*)malloc(sizeof(node));
	node *s = head;
	while(pa&&pb)
	{
		if(pa->data>pb->data)
		{
			s->next = pb;
			s = pb;
			pb = pb->next;
		}
		else
		{
			s->next = pa;
			s = pa;
			pa=pa->next;
		}
	}
	if(pa!=NULL&&pb==NULL)
	{
		while(pa)
		{
			s->next = pa;
			s = pa;
			pa = pa->next;
		}
	 
	}
	if(pa==NULL&&pb!=NULL)
	{
		while(pb)
		{
			s->next = pb;
			s = pb;
			pb=pb->next;
		}
	//	s->next = pb;
	}
	s->next = NULL;
	return head;
}
void display(node *head)
{
	node *p = head->next;
	while(p)
	{
		printf("%d",p->data);
		p = p->next;
	}
	printf("\n");
}
node *create(int n)
{
	node *head = (node*)malloc(sizeof(node));
	node *p = head;
	int x;
	while(n)
	{
		printf("intput:data:");
		node *s = (node*)malloc(sizeof(node));
		scanf("%d",&x);
		s->data = x;
		p->next = s;
		p = s;
		n--;

	}
	p->next = NULL;
	return head;
}
void main()
{
	 
	int n;
	printf("input:n=");
	scanf("%d",&n);
	node *head1;
	head1= create(n);
    printf("input:n=");
	scanf("%d",&n);
	node *head2;
	head2= create(n);
	display(head1);
	display(head2);
	node *head;
	head = merg(head1 ,head2);
	display(head);


	 
}

發佈了93 篇原創文章 · 獲贊 7 · 訪問量 14萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章