lintcode-easy-Remove Duplicates from Sorted List
Posted 哥布林工程师
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lintcode-easy-Remove Duplicates from Sorted List相关的知识,希望对你有一定的参考价值。
Given a sorted linked list, delete all duplicates such that each element appear only once.
Given 1->1->2
, return 1->2
.
Given 1->1->2->3->3
, return 1->2->3
.
/** * Definition for ListNode * public class ListNode { * int val; * ListNode next; * ListNode(int x) { * val = x; * next = null; * } * } */ public class Solution { /** * @param ListNode head is the head of the linked list * @return: ListNode head of linked list */ public static ListNode deleteDuplicates(ListNode head) { // write your code here if(head == null || head.next == null) return head; ListNode new_head = new ListNode(head.val); ListNode p1 = new_head; ListNode p2 = head.next; while(p2 != null){ if(p2.val == p1.val){ p2 = p2.next; } else{ p1.next = new ListNode(p2.val); p1 = p1.next; p2 = p2.next; } } return new_head; } }
以上是关于lintcode-easy-Remove Duplicates from Sorted List的主要内容,如果未能解决你的问题,请参考以下文章
lintcode-easy-Remove Linked List Elements
lintcode-easy-Remove Duplicates from Sorted List