leetcode
程序员文章站
2022-03-05 10:46:23
...
删除排序链表中的重复元素
给定一个排序链表,删除所有重复的元素,使得每个元素只出现一次。
示例 1:
输入: 1->1->2
输出: 1->2
示例 2:
输入: 1->1->2->3->3
输出: 1->2->3’
/*
- Definition for singly-linked list.
- struct ListNode {
-
int val;
-
struct ListNode *next;
- };
/
struct ListNode* deleteDuplicates(struct ListNode* head) {
struct ListNode* tem=head;
whille(tem!=NULL&&tem->next!=NULL)
{
if(tem->val==tem->next->val)
tem->next=tem->next->next;
else tem=tem->next;
}
return head;}
推荐阅读
-
小白的LeetCode日记记录Day1(持续更新ing
-
[LeetCode] 004. Median of Two Sorted Arrays (Hard) 经典分治
-
Leetcode--Reverse Linked List
-
【leetcode 简单】第五题 最长公共前缀
-
Leetcode 289.生命游戏
-
LeetCode hot-100 简单and中等难度,21-30.
-
Leetcode Two Sum (java)Longest Substring Without Repeating Characters
-
LeetCode菜笔记
-
python(leetcode)-66加一问题
-
LeetCode # 300 最长上升子序列