面试题整理13 合并排序链表去重

本文介绍如何合并两个已排序的链表,并在合并过程中去除重复元素。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题目:合并两个排序链表,去掉重复元素

struct ListNode
{
	int m_nValue;
	ListNode* m_pNext;
};
using namespace std;

ListNode* MergeLists(ListNode* pHead1,ListNode* pHead2)
{
	if(pHead1 == NULL && pHead2 == NULL)
		return NULL;
	if(pHead1 == NULL && pHead2 != NULL)
		return pHead2;
	if(pHead1 != NULL && pHead2 == NULL)
		return pHead1;
	ListNode* newListHead = pHead1;
	if( pHead1->m_nValue > pHead2->m_nValue )
	{
		swap(pHead1,pHead2);
	}
	while( pHead1!= NULL && pHead2 != NULL)
	{
		while( pHead1 != NULL && pHead1->m_pNext != NULL && pHead1->m_pNext->m_nValue < pHead2->m_nValue)
		{
			//qu chong 
			while( pHead1->m_pNext != NULL && pHead1->m_nValue == pHead1->m_pNext->m_nValue)
			{
				pHead1->m_pNext = pHead1->m_pNext->m_pNext;
			}

			if( pHead1->m_pNext->m_nValue < pHead2->m_nValue)
			{
				pHead1 = pHead1->m_pNext;
			}
		}

		if( pHead1!=NULL && pHead1->m_nValue == pHead2->m_nValue)
		{
			while( pHead2 != NULL && pHead2->m_nValue == pHead1->m_nValue )
			{
				pHead2 = pHead2->m_pNext;
			}
		}
		ListNode* tempNode = pHead1->m_pNext;
		pHead1->m_pNext = pHead2;
		pHead1 = pHead2;
		pHead2 = tempNode;
	}
	return newListHead;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值