zoukankan      html  css  js  c++  java
  • Java [Leetcode 83]Remove Duplicates from Sorted List

    题目描述:

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

    思路二,递归解法:

    public ListNode deleteDuplicates(ListNode head) {
            if(head == null || head.next == null)return head;
            head.next = deleteDuplicates(head.next);
            return head.val == head.next.val ? head.next : head;
    }
    

      

  • 相关阅读:
    memset使用技巧
    04.碰撞反应
    03.键盘状态跟踪与精灵删除
    02.基本动作
    01.基本图形
    00.入门
    03.交互--鼠标,键盘
    02.action--新增精灵知识点
    01.helloworld--标签
    05.声音
  • 原文地址:https://www.cnblogs.com/zihaowang/p/5082504.html
Copyright © 2011-2022 走看看