Leetcode—31. 下一个排列【中等】

2024每日刷题(一零九)

Leetcode—31. 下一个排列

Leetcode—31. 下一个排列【中等】_第1张图片

算法思想

Leetcode—31. 下一个排列【中等】_第2张图片
Leetcode—31. 下一个排列【中等】_第3张图片

实现代码

class Solution {
public:
    void reverse(vector<int>& nums, int l, int r) {
        while(l < r) {
            swap(nums[l++], nums[r--]);
        }
    }
    void nextPermutation(vector<int>& nums) {
        int n = nums.size();
        // 从后往前找第一个升序的元素对
        int i = 0;
        for(i = n - 2; i >= 0; i--) {
            if(nums[i] < nums[i + 1]) {
                break;
            }
        }
        // 不是最后一个排列
        if(i >= 0) {
            for(int j = n - 1; j > i; j--) {
                if(nums[j] > nums[i]) {
                    swap(nums[j], nums[i]);
                    break;
                }
            }
        }
        reverse(nums, i + 1, n - 1);
    }
};

运行结果

Leetcode—31. 下一个排列【中等】_第4张图片
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!

你可能感兴趣的:(LeetCode刷题,leetcode,算法,c++,数据结构,数组,经验分享)