问题描述:
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list.
For example,
Given 1->2->3->3->4->4->5
, return 1->2->5
.
Given 1->1->1->2->3
, return 2->3
.
原问题链接:https://leetcode.com/problems/remove-duplicates-from-sorted-list-ii/
问题分析
这个问题有一个思路就是在链表里头从头到尾遍历的时候用count来记录当前元素出现的次数。在最开始的时候设置count = 1,然后每次判断cur和cur.next的值是否相等,如果相等,则count++,否则就要看count的值,如果count == 1,说明当前的这个值是没有出现过重复元素的,则我们需要调整指针。否则说明这个元素出现过若干次,那么只需要重置count = 1,不需要调整指针。
最后只需要返回这个调整后的链表的头就可以了。在具体的实现里,为了找到这个调整后的链表头,我们首先定义了一个res的临时节点,它的next指向head。同时还有一个指针prev也和res相同。然后在每次调整链表的时候将prev.next = cur。这样可以在一边判断的时候一边调整链表。
详细的代码实现如下:
/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ public class Solution { public ListNode deleteDuplicates(ListNode head) { if(head == null) return null; ListNode res = new ListNode(0); res.next = head; ListNode prev = res, curr = head; int count = 1; while(curr.next != null) { if(curr.next.val == curr.val) { count++; } else { if(count == 1) { prev.next = curr; prev = curr; } else { count = 1; } } curr = curr.next; } if(count == 1) prev.next = curr; else prev.next = null; return res.next; } }
相关推荐
c c语言_leetcode题解之0082_remove_duplicates_from_sorted_list_ii.zip
javascript js_leetcode题解之82-remove-duplicates-from-sorted-list-ii.js
python python_leetcode题解之083_Remove_Duplicates_from_Sorted_List
c c语言_leetcode题解之0083_remove_duplicates_from_sorted_list.zip
javascript js_leetcode题解之83-remove-duplicates-from-sorted-list.js
c语言入门 C语言_leetcode题解之83-remove-duplicates-from-sorted-list.c
Remove Duplicates from Sorted List II题目: | 源码:标签:单向链表难度:中等 / Medium146. LRU Cache题目: | 源码:标签:哈希表,双向链表难度:中等 / Medium212. Word-Search-II题目: | 英文站源码:./...
II(Remove Duplicates from Sorted List II) 2018.9.27 重建二叉树(Rebuild Binary Tree) 2018.9.28 把字符串转换成整数(Convert a string to an integer) 2018.10.8 树的子结构(Substructure of the tree) ...
leetcode 2 sum c LeetCode 帮助文档 帮助文档存放在Help文件夹下。 文件名 文件描述 链接 complexitypython.txt Python的一些常规操作的复杂度统计 题目清单 Array(数组) ID Difficulty Title Java Python 1 Easy ...
leetcode写题闪退 #*的多少代表此题的有意思程度 有几题第一次写的时候思绪比较混乱: *****Regular Expression Matching 2014.10.29 对于Find Minimum in Rotated Sorted Array II 和 Find Minimum in Rotated ...
leetcode python 001 LeetCode 建立两个个主要资料夹(题目收集、学习内容)+一个玩整的README整理 题目 主要以Python记录于VScode上 先记录头150题 学习 以JupyterNotebook为主 纪录各种资料结构、演算法等 ...
remove-duplicates-from-sorted-list ii 83 删除排序链表中的重复元素 remove-duplicates-from-sorted-list 86 分隔链表 partition-list 92 反转链表 II reverse-linked-list-ii(Reverse a Sub-list) 141 环形链表...
* 删除链表中的重复项(Remove Duplicates from Sorted Array):删除链表中的重复项。 * 从列表末尾删除第N个节点(Remove Nth Node From End of List):从链表末尾删除第N个节点。 5. 栈和队列操作: * 有效的...
- **Remove Duplicates from Sorted List**:从已排序的链表中移除重复项。 - **Merge Sorted Lists**:合并两个已排序的链表。 - **Reverse Linked List**:反转链表。 - **Swap Nodes in Pairs**:交换链表中...
- **2.2.5 Remove Duplicates from Sorted List II** - 移除排序链表中的重复元素,包括头部。 - 实现思路:使用虚拟头结点简化边界条件处理。 - **2.2.6 Rotate List** - 旋转链表。 - 实现思路:先找到链表...
leetcode 答案leetcode-java leetcode.com 的 Java 答案 ================索引================ com.leetcode.array Search a 2D Matrix Spiral Matrix com.leetcode.list Linked List Cycle Linked List Cycle II ...
**1.6 Remove Duplicates from Sorted List II (82)** - **问题描述**:给定一个已排序的链表,删除其中所有重复的元素,使得每个元素只出现一次。 - **解题思路**: - 使用虚拟头节点帮助处理边界情况。 - 遍历...
26 | [Remove Duplicates from Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array/)| [C++](./C++/remove-duplicates-from-sorted-array.cpp) [Python](./Python/remove-duplicates...
83.删除排序链表中的重复元素 (Remove Duplicates from Sorted List) 88.合并两个有序数组 (Merge Sorted Array) 100.相同的树 (Same Tree) 104.二叉树的最大深度 (Maximum Depth of Binary Tree) 118.杨辉三角 ...