leetcode:单链表之Remove Duplicates from Sorted List

本文介绍了一个经典的LeetCode题目——从已排序的单链表中移除重复元素的方法。通过C++实现,该算法确保链表中的每个元素只出现一次。文中提供了一个完整的示例代码,包括创建链表节点、删除重复节点的功能实现及测试过程。

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

leetcode:单链表之Remove Duplicates from Sorted List

题目:

Given a sorted linked list, delete all duplicates such that each element appear only once.
For example,
Given 1->1->2, return 1->2.
Given 1->1->2->3->3, return 1->2->3.

即:给定一个链表,对链表进行滤重,使得每个数只出现一次。

c++实现:

#include <iostream>

using namespace std;
struct ListNode
{
	int val;
	ListNode *next;
	ListNode (int x):val(x),next(NULL){ }
};
ListNode *createListNode(int arr[],int n)
{
	ListNode *r;
	ListNode *p;
	ListNode * L=(ListNode*)malloc(sizeof(ListNode));
	
	r=L;
	
	for(int i=0;i<n;i++)
	{
		p=(ListNode*)malloc(sizeof(ListNode));
		p->val=arr[i];
		r->next=p;
		r=p;
	}
	r->next=NULL;

    return L->next;
}
ListNode *deleteDuplicates(ListNode *head) 
{
	if (head == NULL) 
		return head;
     
	ListNode* p_cur = head;  
    ListNode* p_next = head->next;  
         
    while (p_cur != NULL && p_next != NULL)
	{ 
        if (p_cur->val == p_next-> val) 
		{  
            p_cur->next = p_next->next;  
        } 
		else
		{
            p_cur = p_cur->next;  
        }  
       p_next = p_next->next;  
     }     
 
    return head;  
}
int main()
{
	int a[]={1,1,2,3,3};
	ListNode *input;
	ListNode *out;

	input= createListNode(a,5);
	out=deleteDuplicates(input);

	while(out != NULL)
	{
        cout<<out->val;
        out = out->next;
    }
	cout<<endl;
	return 0;
}
测试结果:



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值