您的位置:首页 > 其它

Easy-题目16:328. Odd Even Linked List

2016-05-30 19:59 218 查看
题目原文:

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.

题目大意:

给出一个单链表,把奇数节点放在偶数节点的前面。

题目分析:

新开两个头结点oddHead和evenHead,然后扫链表,交替的接在两个新头结点的后面,最后把odd链表的尾节点接到even链表的头结点上。

源码:(language:java)

public class Solution {
public ListNode oddEvenList(ListNode head) {
if(head == null)
return head;
ListNode oddHead = head,evenHead =head.next;
ListNode prevOdd = oddHead,prevEven = evenHead;

while(prevOdd.next != null && prevEven.next != null){
prevOdd.next = prevEven.next;
prevOdd = prevOdd.next;

prevEven.next = prevOdd.next;
prevEven = prevEven.next;
}
prevOdd.next = evenHead;

return oddHead;
}
}


成绩:

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