leetcode No328. Odd Even Linked List

Question:

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 ...

Algorithm:

新建两个链表,一个放odd一个放even,在一次循环中就同时遍历odd和even否则会Time Limit Exceeded

Accepted Code:

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* oddEvenList(ListNode* head) {
        if(head==NULL||head->next==NULL)
            return head;
        ListNode* odd=head;
        ListNode* even=head->next;
        ListNode* tmp=even;
        while(odd->next!=NULL&&even->next!=NULL)
        {
            odd->next=even->next;
            odd=odd->next;
            even->next=odd->next;
            even=even->next;
        }

        odd->next=tmp;
        return head;
    }
};
时间: 2024-10-24 12:42:56

leetcode No328. Odd Even Linked List的相关文章

[LeetCode][JavaScript]Odd Even Linked List

Odd Even Linked List 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 i

[LeetCode] 328. Odd Even Linked List ☆☆☆(奇偶节点分别放一起)

每天一算:Odd Even Linked List 描述 给定一个单链表,把所有的奇数节点和偶数节点分别排在一起.请注意,这里的奇数节点和偶数节点指的是节点编号的奇偶性,而不是节点的值的奇偶性. 请尝试使用原地算法完成.你的算法的空间复杂度应为 O(1),时间复杂度应为 O(nodes),nodes 为节点总数. 示例 1: 输入: 1->2->3->4->5->NULL  输出: 1->3->5->2->4->NULL 示例 2: 输入: 2-

【Leetcode】 Odd Even Linked List

题目链接:https://leetcode.com/problems/odd-even-linked-list/ 题目: 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

leetcode:Odd Even Linked List

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 complexi

LeetCode 328. Odd Even Linked List C#

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 complexi

LeetCode 328 Odd Even Linked List(奇偶链表)(*)

翻译 给定一个单链表,将所有的奇节点归为一组,偶节点紧随其后. 请注意我们现在谈的是奇节点而不是节点上的值. 你应该尝试就地完成. 程序应该在O(1)空间复杂度和O(nodes)时间复杂度下完成. 例如: 给定 1->2->3->4->5->NULL, 返回 1->3->5->2->4->NULL. 注释: 最后归类出来的奇节点和偶节点的相对位置应该和输入时一致. 第一个节点为奇节点,第二个节点为偶节点,以此类推-- 原文 Given a sin

Java [Leetcode 328]Odd Even Linked List

题目描述: 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 co

leetcode 328 Odd Even Linked List(链表)

这个题需要对指针理解的比较到位.然后方法就很直接:奇数的连起来,偶数的连起来,最后拼在一起. /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: ListNode* oddEvenList(ListNode* head)

<LeetCode OJ> 328. Odd Even Linked List

328. Odd Even Linked List Total Accepted: 9271 Total Submissions: 24497 Difficulty: Easy 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 t