您的位置:首页 > 其它

Odd Even Linked List

2016-01-18 16:26 120 查看
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
.

一个指针记录奇数的结尾,一个指针记录偶数的开头,一个指针记录偶数的末尾。

奇数的结尾的next,指向偶数的开头,偶数的结尾的next是下一个奇数,奇数的next是下一个偶数

/**
* Definition for singly-linked list.
* public class ListNode {
*     int val;
*     ListNode next;
*     ListNode(int x) { val = x; }
* }
*/
public class Solution {
public ListNode oddEvenList(ListNode head) {
if (head == null || head.next == null || head.next.next == null) {
return head;
}
ListNode p = head.next;
ListNode oddTail = head;
ListNode evenHead = head.next;
ListNode preEven;
while (true) {
if (p.next == null) {
break;
}
preEven = p;
p = p.next;
oddTail.next = p;
ListNode nextEven = p.next;
oddTail = p;
p.next = evenHead;
preEven.next = nextEven;
p = nextEven;
if (p == null) {
break;
}
}
return head;
}
}


  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: