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
.
思路:此题与上一题异曲同工,具体解法如下:
/** * 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) { ListNode first = new ListNode(0); ListNode last = first; ListNode p = head; while(head != null){ while(head.next != null){//去除重复项 if(p.val == head.next.val){ head = head.next; }else{ break; } } last.next = p;//每项只添加一个值 last = last.next; p = head = head.next; last.next = null; } return first.next; } }
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-10-12 23:59:51