现在的位置: 首页 > 综合 > 正文

42 修改append函数,实现:两个非降序链表的并集

2018年01月20日 ⁄ 综合 ⁄ 共 1071字 ⁄ 字号 评论关闭
/*
42.请修改 append  函数,利用这个函数实现:
两个非降序链表的并集,1->2->3  和 2->3->5  并为 1->2->3->5
另外只能输出结果,不能修改两个链表的数据。
*/ 
#include<iostream>
#include<stdio.h>
#include<algorithm>
using namespace std;

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

//两个非降序的合并 
node *merge(node *h1, node *h2) 
{
	if (h1==NULL) return h2;
	if (h2==NULL) return h1;
	node *head;
	if (h1->data>h2->data) //谁做头 
	{
		head=h2;
		h2=h2->next;
	} 
	else 
	{
		head=h1;
		h1=h1->next;
	}
	
	node *current=head;
	
	while(h1!=NULL||h2!=NULL) 
	{
		if(h1!=NULL&&h2!=NULL&&h1->data==h2->data)//去掉相同的 
		{
			h1=h1->next;
			continue;
		}	
		
		if(h1==NULL || (h2!=NULL&&h2->data<h1->data))//h1空,或者h2不为空,并且值小于h1 
		{
			current->next=h2;
			h2=h2->next; 
			current=current->next;
		} 
		else 
		{
			current->next=h1;
			h1=h1->next;
			current=current->next;
		} 
	}
	current->next = NULL;
	return head; 
}


void insertNode(node* &head,int data)//逐步向前 
{
	node *x=new node;
	x->data=data;
	x->next=head;
	head=x;
}

int main(){
	int a[]={1,2,3,4,5,7};
	int b[]={2,3,5,6,7,8};
	int i;
	node *h1=NULL,*h2=NULL;
	
	//测试 
	for(i=5;i>=0;i--)//倒着插入的 
		insertNode(h1,a[i]);
	for(i=5;i>=0;i--)
		insertNode(h2,b[i]);	
	
	node *result=NULL;
	
	result=merge(h1,h2);
	//result=h1;
	while(result!=NULL)//1 2 3 4 5 6 7 8
	{
		printf("%d ",result->data);
		result=result->next; 
	}
	return 0;
}

抱歉!评论已关闭.