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) {
        if(head==NULL||head->next==NULL||head->next->next==NULL) return head;
        ListNode *odd=head,*even=head->next,*even_head=even;
        while(even&&even->next){
            odd->next=even->next;
            odd=odd->next;
            even->next=even->next->next;
            even=even->next;
        }
        odd->next=even_head;
        return head;
    }
};
时间: 2024-08-09 22:01:51

leetcode 328 Odd Even Linked List(链表)的相关文章

[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 328 Odd Even Linked List(奇偶链表)(*)

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

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

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

<LeetCode OJ> 328. Odd Even Linked List

328. Odd Even Linked List My Submissions Question 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 numbe

[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

题目: 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 comp

【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 complexi