您的位置:首页 > 其它

Leetcode Odd Even Linked List

2016-07-20 03:43 399 查看
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
.

Difficulty: Medium

/**
* 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 oddTail = head;
ListNode curr = head.next.next, pre = head.next, next = curr.next;
while(curr != null){
next = curr.next;
pre.next = next;
curr.next = oddTail.next;
oddTail.next = curr;
oddTail = oddTail.next;
if(next == null) break;
curr = next.next;
pre = next;
}
return head;

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