码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode--Remove Duplicates from Sorted List

时间:2015-08-29 21:35:15      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

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.

Solution:从排好序的链表中移除重复节点。

思路:

1)输入的是空链表;

2)由于是排好序的,因此重复元素只会接连出现,因此用两个指针遍历链表即可。

解决:

    public static ListNode deleteDuplicates(ListNode head) {
        if(head == null || head.next == null)
            return null;
ListNode p
= head; ListNode q = head.next; while(q != null) { if(p.val == q.val) { p.next = q.next; q = p.next; } else { p = q; q = p.next; } } return head; }

 

LeetCode--Remove Duplicates from Sorted List

标签:

原文地址:http://www.cnblogs.com/little-YTMM/p/4769739.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!