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

链表的奇偶重排

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

struct ListNode* oddEvenList(struct ListNode* head ) {
    // write code here
    if(!head || !head->next) return head;
    struct ListNode *head1=head->next,*p=head,*q=head1;
    while(p->next && q->next){
        p->next=q->next;
        p=p->next;
        q->next=p->next;
        q=q->next;
    }
    p->next=head1;
    return head;
}

全部评论

相关推荐

牛至超人:把哈工大,再加大加粗,看见闪闪发光的哈工大字样,面试官直接流口水
投递字节跳动等公司7个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务