题解 | #删除有序链表中重复的元素-II#
删除有序链表中重复的元素-II
https://www.nowcoder.com/practice/71cef9f8b5564579bf7ed93fbe0b2024
import java.util.*;
/*
* public class ListNode {
* int val;
* ListNode next = null;
* public ListNode(int val) {
* this.val = val;
* }
* }
*/
public class Solution {
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param head ListNode类
* @return ListNode类
*/
public ListNode deleteDuplicates (ListNode head) {
// write code here
//为空或只有一个元素时直接返回。
if(head == null || head.next == null){
return head;
}
ListNode temp = new ListNode(-1);
temp.next = head;
ListNode pre = temp;
ListNode end = head;
while(end != null){
end = end.next;
if(end != null && end.val == head.val){
end = end.next;
//存在相同时,尾指针继续往下找是否有相同的。
while(end != null && end.val == head.val){
end = end.next;
}
pre.next = end;
head = end;
}else{
pre = pre.next;
head = head.next;
}
}
return temp.next;
}
}

神州信息成长空间 151人发布