1. 程式人生 > >leetCode 83.Remove Duplicates from Sorted List(刪除排序鏈表的反復) 解題思路和方法

leetCode 83.Remove Duplicates from Sorted List(刪除排序鏈表的反復) 解題思路和方法

排序 back ace 去除 adding 思路 詳細 init ica

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;
    }
}


leetCode 83.Remove Duplicates from Sorted List(刪除排序鏈表的反復) 解題思路和方法