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

Leet Code OJ 83. Remove Duplicates from Sorted List [Difficulty: Easy]

时间:2016-03-04 14:36:30      阅读:139      评论: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.

翻译:
给定一个排序号的链表,删除所有的重复元素,保证每个元素只出现一次。

分析:
在当前节点删除下一节点,会比较容易操作,只需要修改next指针。

代码:

/**
 * 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) {
        if(head==null){
            return null;
        }
        ListNode currentNode=head;
        while(currentNode.next!=null){
            if(currentNode.next.val==currentNode.val){
                currentNode.next=currentNode.next.next;
            }else{
                currentNode=currentNode.next;
            }

        }
        return head;
    }
}

Leet Code OJ 83. Remove Duplicates from Sorted List [Difficulty: Easy]

标签:

原文地址:http://blog.csdn.net/lnho2015/article/details/50801891

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