码迷,mamicode.com
首页 > 其他好文 > 详细

【链表】Odd Even Linked List

时间:2016-01-20 22:19:36      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

题目:

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

思路:

这道题只要将奇数和偶数节点拿出来组成两个链表,然后合并即可。

/**
 * Definition for singly-linked list.
 * function ListNode(val) {
 *     this.val = val;
 *     this.next = null;
 * }
 */
/**
 * @param {ListNode} head
 * @return {ListNode}
 */
var oddEvenList = function(head) {
    if(head==null||head.next==null){
        return head;
    }
    
    var p=head.next.next,oHead=head,eHead=head.next,i=3,op=oHead,ep=eHead;
    while(p!=null){
        if(i%2!=0){
            op.next=p;
            op=op.next;
        }else{
            ep.next=p;
            ep=ep.next;
        }
        p=p.next;
        i++;
    }
    
    ep.next=null;
    op.next=eHead;
    return oHead;
};

 

【链表】Odd Even Linked List

标签:

原文地址:http://www.cnblogs.com/shytong/p/5146752.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!