zoukankan      html  css  js  c++  java
  • 328. Odd Even Linked List

    • Total Accepted: 57856
    • Total Submissions: 137040
    • Difficulty: Medium
    • Contributors: Admin

    Given a singly linked list, group all odd nodes together followed by the even nodes. Please note here we are talking about the node number and not the value in the nodes.

    You should try to do it in place. The program should run in O(1) space complexity and O(nodes) time complexity.

    Example:
    Given 1->2->3->4->5->NULL,
    return 1->3->5->2->4->NULL.

    Note:
    The relative order inside both the even and odd groups should remain as it was in the input. 
    The first node is considered odd, the second node even and so on ...

    分析


    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    class Solution {
    public:
        ListNode* oddEvenList(ListNode* head) {
            if(head == NULL || head->next == NULL) return head;
             
            ListNode* l1 = head, * l2 = head->next, * h2 = head->next;
            ListNode* cur = l2->next;
            bool pos = false;
            while(cur){
                ListNode* & ref = !pos ? l1 : l2;
                ref->next = cur;
                ref = cur;
                cur = cur->next;
                pos = !pos;
            }
            l1->next = h2;
            l2->next = NULL;
            return head;
        }
    };




  • 相关阅读:
    快速幂
    1112个人赛,最长回文串常见算法讨论
    11-05-sdust-个人赛赛后随想
    UVA 1149 Bin Packing
    UVa 1608,Non-boring sequences
    UVa 10954,Add All
    UVa 714,Copying Books
    Careercup
    Careercup
    Careercup
  • 原文地址:https://www.cnblogs.com/zhxshseu/p/99516a1c7bebeb36f6b8a9dc2590f0e3.html
Copyright © 2011-2022 走看看