Linked-List相關(guān)

[Reversed-LinkedList] https://leetcode.com/problems/reverse-linked-list/description/
1.Reversed Linked-list

class Solution {
   public ListNode reverseList(ListNode head) {
       ListNode prev = null;       
       while (head != null) {
           ListNode temp = head.next;
           head.next = prev;
           prev = head;
           head = temp;
       }
       return prev;      
   }
}

2.[Reversed Linked List II]https://leetcode.com/problems/reverse-linked-list-ii/description/
solution:重點(diǎn)是找到需要翻轉(zhuǎn)的區(qū)間,具體看注釋

class Solution {
    public ListNode reverseBetween(ListNode head, int m, int n) {
        if (head == null) {
            return null;
        }
        
        ListNode dummy = new ListNode(0);// create a dummy node to mark the head of this list
        dummy.next = head;
        ListNode pre = dummy;// make a pointer pre as a marker for the node before reversing
        
        for (int i=0; i<m-1; i++) {
            pre = pre.next;
        }
        ListNode start = pre.next;// a pointer to the beginning of a sub-list that will be reversed
        ListNode tail = start.next;// a pointer to a node that will be reversed
        
        // 1 - 2 -3 - 4 - 5 ; m=2; n =4 ---> pre = 1, start = 2, tail = 3
        // dummy-> 1 -> 2 -> 3 -> 4 -> 5
        
        for (int i=0; i<n-m; i++) {
            start.next = tail.next;
            tail.next = pre.next;
            pre.next = tail;
            tail = start.next;
            //this phase is the standard code for reverse Linked List,need to be one-to-one correspondence
        }
        return dummy.next;        
    }
}

3.判斷鏈表是否有環(huán)
[Linked List Cycle] https://leetcode.com/problems/linked-list-cycle/description/

solution:快慢指針

public class Solution {
    public boolean hasCycle(ListNode head) {
        if (head == null) {
            return false;
        }
        ListNode fast = head;
        ListNode slow = head;
        while (fast != null) {
            if (fast.next == null) {
                return false;
            }
            if (fase.next == slow) {
                return true;
            }
        }
        fast = fast.next.next;
        slow = slow.next;       
    }
    return false;
}

4.刪除鏈表倒數(shù)第N個(gè)節(jié)點(diǎn)
[Remove Nth Node form End of LinkedList]https://leetcode.com/problems/remove-nth-node-from-end-of-list/description/
solution:快慢指針,看注釋

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode removeNthFromEnd(ListNode head, int n) {
        ListNode start = new ListNode(0);
        ListNode slow = start, fast = start;
        slow.next = head;        
        //將fast先走侄刽,與slow的距離保證為n
        for (int i=1; i<=n+1; i++) {
            fast = fast.next;
        }        
        //將fast走到頭泉孩,然后slow走到中間,兩者的距離正好還是n
        while (fast != null) {
            slow = slow.next;
            fast = fast.next;
        }        
        //刪除目標(biāo)節(jié)點(diǎn)
        slow.next = slow.next.next;
        return start.next;        
    }
}

5.刪除鏈表中的元素
[Remove Linked List Elements]https://leetcode.com/problems/remove-linked-list-elements/description/
solution:鏈表刪除的統(tǒng)一做法聪姿,要注意找到刪除節(jié)點(diǎn)的前一個(gè)節(jié)點(diǎn)

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode removeElements(ListNode head, int val) {
        ListNode dummy = new ListNode(0);
        dummy.next = head;
        head = dummy;
        
        while (head.next != null) {
            if (head.next.val == val) {
                head.next = head.next.next;
            } else {
                head = head.next;//move head pointer to next and then loop
            }
        }
        return dummy.next;
    }
}

6.兩個(gè)鏈表第一個(gè)公共節(jié)點(diǎn)
solution:首先遍歷兩個(gè)鏈表得到它們的長(zhǎng)度碴萧,就知道哪個(gè)鏈表比較長(zhǎng),以及它的鏈表比斷的鏈表多幾個(gè)節(jié)點(diǎn)末购。在第二次遍歷的時(shí)候破喻,在較長(zhǎng)的鏈表上先走若干步,接著再同時(shí)在兩個(gè)鏈表上遍歷盟榴,找到第一個(gè)相同的節(jié)點(diǎn)就是它們的第一個(gè)公共節(jié)點(diǎn)曹质。

public ListNode findFirstCommonNode (ListNode pHead1, ListNode pHead2) {
    if (pHead1 == null || pHead2 == null) {
        return null;
    }

    //定義兩個(gè)指針
    ListNode node1 = pHead1, node2 = pHead2;
    int length1 = 0, length2 = 0;
    //遍歷兩個(gè)鏈表
    while (node1 != null) {
        length1 += 1;
        node1 = node1.next;
    }
    while (node2 != null) {
        length2 += 1;
        node2 = node2.next;
    }
    //對(duì)較長(zhǎng)鏈表的頭結(jié)點(diǎn)處理,先走差值k步
    if (length1 > length2) {
        int k = length1 - length2;
        while (k != 0) {
            pHead1 = pHead1.next;
            k--;
        }       
    } else {
        int k = length2 - length1;
        while (k != 0) {
            pHead2 = pHead2.next;
            k--;
        }       
    }
    //遍歷第一個(gè)相同的節(jié)點(diǎn)就是第一個(gè)公共節(jié)點(diǎn)
    while (pHead1 != pHead2) {
        pHead1 = pHead1.next;
        pHead2 = pHead2.next;
    }
    return pHead1;
}

7.從尾到頭打印鏈表
solution:兼職offer版本,看代碼

//棧的方式
class Solution {
    public static void printListReverse(ListNode head) {
        Stack<ListNode> stack = new Stack<ListNode>();
        if (head == null) {
            return;
        }
        while (head != null) {
            stack.push(head);
            head = head.next;
        }
        while (!stack.empty()) {
            stack.pop();
        }
    }
}


//遞歸的方式
class Solution {
    public staic void pinrtListReverse(ListNode head) {
        if (head == null) {
            return;
        }
        while (head != null) {
            if (head.next != null) {
                ListNode next = head.next;
                printListReverse(next);
            } else {
                return;
            }
        }
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末羽德,一起剝皮案震驚了整個(gè)濱河市几莽,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌宅静,老刑警劉巖章蚣,帶你破解...
    沈念sama閱讀 211,376評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異姨夹,居然都是意外死亡纤垂,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,126評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門(mén)磷账,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)峭沦,“玉大人,你說(shuō)我怎么就攤上這事逃糟『鹩悖” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,966評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵绰咽,是天一觀(guān)的道長(zhǎng)菇肃。 經(jīng)常有香客問(wèn)我,道長(zhǎng)取募,這世上最難降的妖魔是什么巷送? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,432評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮矛辕,結(jié)果婚禮上笑跛,老公的妹妹穿的比我還像新娘。我一直安慰自己聊品,他們只是感情好飞蹂,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,519評(píng)論 6 385
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著翻屈,像睡著了一般陈哑。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上伸眶,一...
    開(kāi)封第一講書(shū)人閱讀 49,792評(píng)論 1 290
  • 那天惊窖,我揣著相機(jī)與錄音,去河邊找鬼厘贼。 笑死界酒,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的嘴秸。 我是一名探鬼主播毁欣,決...
    沈念sama閱讀 38,933評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼庇谆,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了凭疮?” 一聲冷哼從身側(cè)響起饭耳,我...
    開(kāi)封第一講書(shū)人閱讀 37,701評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎执解,沒(méi)想到半個(gè)月后寞肖,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,143評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡衰腌,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,488評(píng)論 2 327
  • 正文 我和宋清朗相戀三年逝淹,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片桶唐。...
    茶點(diǎn)故事閱讀 38,626評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖茉兰,靈堂內(nèi)的尸體忽然破棺而出尤泽,到底是詐尸還是另有隱情,我是刑警寧澤规脸,帶...
    沈念sama閱讀 34,292評(píng)論 4 329
  • 正文 年R本政府宣布坯约,位于F島的核電站,受9級(jí)特大地震影響莫鸭,放射性物質(zhì)發(fā)生泄漏闹丐。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,896評(píng)論 3 313
  • 文/蒙蒙 一被因、第九天 我趴在偏房一處隱蔽的房頂上張望卿拴。 院中可真熱鬧,春花似錦梨与、人聲如沸堕花。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,742評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)缘挽。三九已至,卻和暖如春呻粹,著一層夾襖步出監(jiān)牢的瞬間壕曼,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,977評(píng)論 1 265
  • 我被黑心中介騙來(lái)泰國(guó)打工等浊, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留腮郊,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,324評(píng)論 2 360
  • 正文 我出身青樓筹燕,卻偏偏與公主長(zhǎng)得像伴榔,于是被迫代替她去往敵國(guó)和親纹蝴。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,494評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容