25. Reverse Nodes in k-Group

Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.
k is a positive integer and is less than or equal to the length of the linked list. If the number of nodes is not a multiple of k then left-out nodes in the end should remain as it is.
You may not alter the values in the nodes, only nodes itself may be changed.
Only constant memory is allowed.
For example,
Given this linked list: 1->2->3->4->5
For k = 2, you should return: 2->1->4->3->5
For k = 3, you should return: 3->2->1->4->5

Solution1:recursive遞歸 寫(xiě)法

從起始每k個(gè)作為一段荤堪,實(shí)現(xiàn)reverse當(dāng)前段篱竭,并遞歸完成下一段的reverse希太。
Time Complexity: O(N) Space Complexity: O(k) 遞歸緩存

Solution2_a:iterative 寫(xiě)法: 依次reverse

依次reverse: 1 -> 2 -> 3 -> 4
1 <- 2 -> 3 -> 4 再 1 <- 2 -< 3 -> 4 再 1 <- 2 <- 3 <- 4
本題中將每一段(k個(gè)) 內(nèi)部依次reverse( 普通prev寫(xiě)法)狗唉,重新連接首尾后跳仿,繼續(xù)下一段
Time Complexity: O(N) Space Complexity: O(1)

Solution2_b:iterative 寫(xiě)法: (后部)插入法reverse

1 -> 2 -> 3 -> 4
2 -> 3 -> 4 -> 1 再 3 -> 4 -> 2 -> 1 再 4 -> 3 -> 2 -> 1


屏幕快照 2017-09-11 下午9.23.22.png

本題中將每一段(k個(gè)) 內(nèi)部依次插入法reverse志于,重新連接首尾后蛉签,繼續(xù)下一段
Time Complexity: O(N) Space Complexity: O(1)

Solution2_c:Iterative (前部)插入法reverse ?

1 -> 2 -> 3 -> 4
2 -> 1 -> 3 -> 4 再 3 -> 2 -> 1 -> 4 再 4 -> 3 -> 2 -> 1

Solution1 Code:

class Solution1 {
    public ListNode reverseKGroup(ListNode head, int k) {
        ListNode curr = head;
        int count = 0;
        while (curr != null && count != k) { // find the k+1 node
            curr = curr.next;
            count++;
        }
        if (count == k) { // if k+1 node is found
            curr = reverseKGroup(curr, k); // reverse next section
            
            //reverse this section
            while (count-- > 0) { // reverse current k-group: 
                ListNode tmp = head.next; // save head.next
                head.next = curr; // (main) head.next = prev_head (except for the first time) 
                curr = head; // curr as prev_head
                head = tmp; // head to original next
            }
            head = curr;
        }
        return head;
    }
}

Solution2_a Code:

class Solution2_a {
    /**
     * Reverse a link list between begin and end exclusively
     * an example:
     * a linked list:
     * 0->1->2->3->4->5->6
     * |           |   
     * begin       end
     * after call begin = reverse(begin, end)
     * 
     * 0->3->2->1->4->5->6
     *          |  |
     *      begin end
     * @return the reversed list's 'begin' node, which is the precedence of node end
    */

    public ListNode reverseKGroup(ListNode head, int k) {
        ListNode begin;
        if (head == null || head.next == null || k == 1)
            return head;
        ListNode dummyhead = new ListNode(0);
        dummyhead.next = head;
        begin = dummyhead;
        int i=0;
        while (head != null){
            i++;
            if (i % k == 0){
                begin = reverse(begin, head.next);
                head = begin.next;
            } else {
                head = head.next;
            }
        }
        return dummyhead.next;
    
    }

    public ListNode reverse(ListNode begin, ListNode end) {
        ListNode curr = begin.next;
        ListNode next, first;
        ListNode prev = begin;
        first = curr;
        while (curr != end){
            next = curr.next;
            curr.next = prev;
            prev = curr;
            curr = next;
        }
        begin.next = prev;
        first.next = curr;
        return first;
    }
}

Solution2_b Code:

lass Solution2_b {
    public ListNode reverseKGroup(ListNode head, int k) {
        if (head==null||head.next==null||k<2) return head;

        ListNode dummy = new ListNode(0);
        dummy.next = head;
        
        ListNode tail = dummy, prev = dummy,temp;
        int count;
        while(true) {
            count = k;
            while(count > 0 && tail != null){
                count--;
                tail = tail.next;
            } 
            if(tail == null) break;//Has reached the end
            
            head = prev.next;//for next cycle
            // prev-->temp-->...--->....--->tail-->....
            // Delete @temp and insert to the next position of @tail
            // prev-->...-->...-->tail-->head-->...
            // Assign @temp to the next node of @prev
            // prev-->temp-->...-->tail-->...-->...
            // Keep doing until @tail is the next node of @prev
            while(prev.next != tail){
                temp = prev.next;//Assign
                prev.next = temp.next;//Delete
                
                temp.next = tail.next;
                tail.next = temp;//Insert
            }
            tail = head;
            prev = head;
            
        }
        return dummy.next;
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市件舵,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌脯厨,老刑警劉巖铅祸,帶你破解...
    沈念sama閱讀 210,914評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異合武,居然都是意外死亡临梗,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評(píng)論 2 383
  • 文/潘曉璐 我一進(jìn)店門(mén)眯杏,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)夜焦,“玉大人,你說(shuō)我怎么就攤上這事岂贩∶>” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,531評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵萎津,是天一觀的道長(zhǎng)卸伞。 經(jīng)常有香客問(wèn)我,道長(zhǎng)锉屈,這世上最難降的妖魔是什么荤傲? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,309評(píng)論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮颈渊,結(jié)果婚禮上遂黍,老公的妹妹穿的比我還像新娘。我一直安慰自己俊嗽,他們只是感情好雾家,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,381評(píng)論 5 384
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著绍豁,像睡著了一般芯咧。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上竹揍,一...
    開(kāi)封第一講書(shū)人閱讀 49,730評(píng)論 1 289
  • 那天敬飒,我揣著相機(jī)與錄音,去河邊找鬼芬位。 笑死无拗,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的昧碉。 我是一名探鬼主播蓝纲,決...
    沈念sama閱讀 38,882評(píng)論 3 404
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼阴孟,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了税迷?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,643評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤锹漱,失蹤者是張志新(化名)和其女友劉穎箭养,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體哥牍,經(jīng)...
    沈念sama閱讀 44,095評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡毕泌,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,448評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了嗅辣。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片撼泛。...
    茶點(diǎn)故事閱讀 38,566評(píng)論 1 339
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖澡谭,靈堂內(nèi)的尸體忽然破棺而出愿题,到底是詐尸還是另有隱情,我是刑警寧澤蛙奖,帶...
    沈念sama閱讀 34,253評(píng)論 4 328
  • 正文 年R本政府宣布潘酗,位于F島的核電站,受9級(jí)特大地震影響雁仲,放射性物質(zhì)發(fā)生泄漏仔夺。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,829評(píng)論 3 312
  • 文/蒙蒙 一攒砖、第九天 我趴在偏房一處隱蔽的房頂上張望缸兔。 院中可真熱鬧,春花似錦吹艇、人聲如沸惰蜜。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,715評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)蝎抽。三九已至,卻和暖如春路克,著一層夾襖步出監(jiān)牢的瞬間樟结,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,945評(píng)論 1 264
  • 我被黑心中介騙來(lái)泰國(guó)打工精算, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留瓢宦,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,248評(píng)論 2 360
  • 正文 我出身青樓灰羽,卻偏偏與公主長(zhǎng)得像驮履,于是被迫代替她去往敵國(guó)和親鱼辙。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,440評(píng)論 2 348

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