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

链表的奇偶重排

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

/**
 * struct ListNode {
 *	int val;
 *	struct ListNode *next;
 *	ListNode(int x) : val(x), next(nullptr) {}
 * }j;
 */

#include <utility>
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param head ListNode类 
     * @return ListNode类
     */
    ListNode* oddEvenList(ListNode* head) {
        if(not head) return head;
        
        std::vector<ListNode*> vec;
        for(auto cur = head; cur; cur = cur->next){
            vec.emplace_back(cur);
        }

        // 这里我们还是开一块儿空间做拷贝为佳
        decltype(vec) odds;
        decltype(vec) events;

        for(size_t idx = 0; idx < vec.size(); ++ idx) {
            if(idx & 1) odds.emplace_back(vec[idx]);
            else events.emplace_back(vec[idx]);
        }
        // 再将结果拼接回去
        auto mid = std::move(events.begin(), events.end(), vec.begin());
        std::move( odds.begin(), odds.end(), mid);
        
        for(auto it = vec.begin(); it != vec.end(); ++ it) {
            if(it + 1 != vec.end()) {
                (*it)->next = (*(it+1));
            }
        }
        vec.back()->next = {};

        return vec.front();
    }
};

全部评论

相关推荐

10-14 23:01
已编辑
中国地质大学(武汉) Java
CUG芝士圈:虽然是网上的项目,但最好还是包装一下,然后现在大部分公司都在忙校招,十月底、十一月初会好找一些。最后,boss才沟通100家,别焦虑,我去年暑假找第一段实习的时候沟通了500➕才有面试,校友加油
点赞 评论 收藏
分享
Noob1024:一笔传三代,人走笔还在
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务