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

链表的奇偶重排

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

/**
 * struct ListNode {
 *  int val;
 *  struct ListNode *next;
 *  ListNode(int x) : val(x), next(nullptr) {}
 * };
 */
class Solution {
  public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param head ListNode类
     * @return ListNode类
     */
    ListNode* oddEvenList(ListNode* head) {
        if (head == NULL || head->next == NULL) return head;
        // write code here
        int i = 0;
        ListNode a(0), b(0);
        ListNode* x = &a, *y = &b;
        while (head) {
            auto p = head->next;
            if (i % 2 == 0) {
                x = add(x, head);
            } else {
                y = add(y, head);
            }
            head->next = NULL;
            head = p ;
            i++;
        }
        if (y == &b) {
            return a.next;

        }
        x->next = b.next;
        return  a.next;
    }
    ListNode* add(ListNode* tail, ListNode* x )  {
        tail ->next = x;
        return x;
    }


};

算法常用解题技巧 文章被收录于专栏

算法常用解题技巧

全部评论

相关推荐

点赞 评论 收藏
分享
M_bao:简历排版换一下吧,第二个项目换了吧,咱门双非学历本来就不行还用这种项目太掉分了,300沟通一个要简历你打招呼也有问题。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务