删除有序链表中重复的元素-I
直接判断相等时直接让cur.next=cur.next.next即可。
public ListNode deleteDuplicates (ListNode head) {
// write code here
ListNode cur=head;
while (cur!=null){
while (cur.next!=null&&cur.val==cur.next.val){
cur.next=cur.next.next;
}
cur=cur.next;
}
return head;
}