欧美1区2区3区激情无套,两个女人互添下身视频在线观看,久久av无码精品人妻系列,久久精品噜噜噜成人,末发育娇小性色xxxx

題解 | #刪除有序鏈表中重復(fù)的元素-II#

刪除有序鏈表中重復(fù)的元素-II

http://fangfengwang8.cn/practice/71cef9f8b5564579bf7ed93fbe0b2024

import java.util.*;

/*
 * public class ListNode {
 *   int val;
 *   ListNode next = null;
 *   public ListNode(int val) {
 *     this.val = val;
 *   }
 * }
 */

public class Solution {
    /**
     * 代碼中的類名、方法名、參數(shù)名已經(jīng)指定,請(qǐng)勿修改,直接返回方法規(guī)定的值即可
     *
     *
     * @param head ListNode類
     * @return ListNode類
     */
    public ListNode deleteDuplicates (ListNode head) {
        // write code here
        if (head == null) {
            return null;
        }
        if (head.next == null) {
            return head;
        }
        ListNode nHead = new ListNode(-1);
        nHead.next = head;
        ListNode cur = nHead;
        while (cur.next != null && cur.next.next != null) {
            if (cur.next.val == cur.next.next.val) {
                int tmp = cur.next.val;
                while (cur.next != null && tmp == cur.next.val) {
                    cur.next = cur.next.next;
                }
            } else {
                cur = cur.next;
            }
        }
        return nHead.next;
        //為什么設(shè)置頭節(jié)點(diǎn),因?yàn)榈谝粋€(gè)節(jié)點(diǎn)可能被刪除
    }
}

全部評(píng)論

相關(guān)推薦

抱抱礙事梨a:三點(diǎn)建議,第一點(diǎn)是建議再做一個(gè)項(xiàng)目,把自我介紹部分頂了,第二點(diǎn)是中南大學(xué)加黑加粗,第三點(diǎn)是建議加v詳細(xì)交流
點(diǎn)贊 評(píng)論 收藏
分享
找到實(shí)習(xí)就改名4月17日下午更改:把華北改為華南再試一試,應(yīng)該就沒(méi)啥問(wèn)題了。改完可能都不用投,別人主動(dòng)聯(lián)系了。
點(diǎn)贊 評(píng)論 收藏
分享
評(píng)論
點(diǎn)贊
收藏
分享

創(chuàng)作者周榜

更多
正在熱議
更多
??途W(wǎng)
牛客企業(yè)服務(wù)