题解 | #链表中的节点每k个一组翻转#

链表中的节点每k个一组翻转

https://www.nowcoder.com/practice/b49c3dc907814e9bbfa8437c251b028e

/**
 * struct ListNode {
 *	int val;
 *	struct ListNode *next;
 *	ListNode(int x) : val(x), next(nullptr) {}
 * };
 */
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param head ListNode类 
     * @param k int整型 
     * @return ListNode类
     */
  //思路: 递归反转k个元素。每次反正,先找到当前子链表的结束位置。 递归结束条件:链表剩余元素小于k个
    ListNode* reverseKGroup(ListNode* head, int k) {
        ListNode* tail = head;
        for(int i=0; i<k; i++){
            if(tail == nullptr){
                //还剩不到k个数据
                return head;
            }
            tail = tail->next;
        }
        //进行k个数据的反转
        ListNode* cur = head;
        ListNode* pre = nullptr;
        while (cur != tail) {
            ListNode* t = cur->next;
            cur->next = pre;
            pre = cur;
            cur = t;
        
        }
        head->next = reverseKGroup(tail, k);

        return pre;
    }
};

全部评论

相关推荐

我即大橘:耐泡王
点赞 评论 收藏
分享
牛客963010790号:为什么还要收藏
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务