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

      

  • 相关阅读:
    求1+2+3+...+n
    孩子们的游戏(圆圈中最后剩下的数) 约瑟夫环
    扑克牌顺子
    翻转单词顺序列
    左旋转字符串
    和为S的两个数字
    和为S的连续正数序列
    CocoaPods 更新
    UITextView 动态高度计算(iOS7版)
    Mac 把图片反色
  • 原文地址:https://www.cnblogs.com/zihaowang/p/5082504.html
Copyright © 2011-2022 走看看