题解 | #牛群的重新排列#

牛群的重新排列

https://www.nowcoder.com/practice/5183605e4ef147a5a1639ceedd447838

/**
 * struct ListNode {
 *	int val;
 *	struct ListNode *next;
 *	ListNode(int x) : val(x), next(nullptr) {}
 * };
 */
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param head ListNode类 
     * @param left int整型 
     * @param right int整型 
     * @return ListNode类
     */
    ListNode* reverseBetween(ListNode* head, int left, int right) {
        // write code here
        ListNode* ans = new ListNode(-1);
        ans->next = head;
        ListNode* temp = ans;

        int t = 1;
        while(t<left)
        {
            temp = temp->next;
            ++t;
        }

        ListNode* next = nullptr;
        // left的前一位;
        ListNode* pre = temp->next;
        while(t<=right)
        {
            ListNode* temp_2 = pre->next;
            pre->next = next;
            next = pre;
            pre = temp_2;
            ++t;
        }

        temp->next = next;
        while(next->next)
            next = next->next;

        next->next = pre;

        return ans->next;        
    }
};

虚数五行区解题中心 文章被收录于专栏

非淡泊无以明志,非宁静无以致远

全部评论

相关推荐

dongsheng66:如果想进大厂的话,在校经历没必要占这么大篇幅,可以把专业技能单独放一个专栏写,可以加个项目经历
点赞 评论 收藏
分享
冲芭芭拉鸭:你这图还挺新,偷了。
投递美团等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务