题解 | #链表的奇偶重排#

链表的奇偶重排

https://www.nowcoder.com/practice/02bf49ea45cd486daa031614f9bd6fc3

/*
 * function ListNode(x){
 *   this.val = x;
 *   this.next = null;
 * }
 */
/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 * 
 * @param head ListNode类 
 * @return ListNode类
 */
function oddEvenList( head ) {
    // write code here
    if(head==null) return null
    var oddList=head,evenList=head.next;
    var odd=oddList,even=evenList;
    
    while(even!=null && even.next!=null){
        odd.next=even.next
        odd=odd.next;
        
        even.next=odd.next
        even=even.next;
    }
    odd.next=evenList
    return oddList
}
module.exports = {
    oddEvenList : oddEvenList
};
全部评论

相关推荐

点赞 评论 收藏
分享
鼗:四级有点难绷,感觉能拿国家励志奖学金,学习能力应该蛮强的,四级确实不重要,但是拿这个卡你可是很恶心啊
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务