日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

【LeetCode】031. Next Permutation

發(fā)布時(shí)間:2025/3/15 编程问答 25 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【LeetCode】031. Next Permutation 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

題目:

Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.

If such arrangement is not possible, it must rearrange it as the lowest possible order (ie, sorted in ascending order).

The replacement must be in-place, do not allocate extra memory.

Here are some examples. Inputs are in the left-hand column and its corresponding outputs are in the right-hand column.

1,2,3 → 1,3,2 3,2,1 → 1,2,3 1,1,5 → 1,5,1

  

題解:

  from here

Solution 1 ()?

class Solution { public:void nextPermutation(vector<int>& nums) {int n = nums.size();for(int i=n-2; i>=0; --i) {if(nums[i]>=nums[i+1]) continue;int j = n-1;for(; j>i; --j) {if(nums[j]>nums[i]) break;}swap(nums[i], nums[j]);reverse(nums.begin()+i+1, nums.end());return; }reverse(nums.begin(), nums.end());} };

  from here

Solution 2 ()

class Solution { public:void nextPermutation(vector<int> &nums) {if (nums.empty()) return; // in reverse order, find the first number which is in increasing trend (we call it violated number here)int i;for (i = nums.size()-2; i >= 0; --i) {if (nums[i] < nums[i+1]) break;}// reverse all the numbers after violated numberreverse(nums.begin()+i+1, nums.end());// if violated number not found, because we have reversed the whole array, then we are done!if (i == -1) return;// else binary search find the first number larger than the violated numberauto itr = upper_bound(nums.begin()+i+1, nums.end(), nums[i]);// swap them, done!swap(nums[i], *itr);} };

  Solution 3-5 are from here?(Solution 2 和 Solution 3 其實(shí)是一個(gè)解法 )

Solution 3 ()

class Solution { public:void nextPermutation(vector<int>& nums) {int i = nums.size() - 1, k = i;while (i > 0 && nums[i-1] >= nums[i])i--;for (int j=i; j<k; j++, k--)swap(nums[j], nums[k]);if (i > 0) {k = i--;while (nums[k] <= nums[i])k++;swap(nums[i], nums[k]);}} };

  使用STL庫函數(shù)

Solution 4 ()

class Solution { public:void nextPermutation(vector<int>& nums) {auto i = is_sorted_until(nums.rbegin(), nums.rend());if (i != nums.rend())swap(*i, *upper_bound(nums.rbegin(), i, *i));reverse(nums.rbegin(), i);} }; 

   使用STL庫函數(shù)

Solution 5 ()

class Solution { public:void nextPermutation(vector<int>& nums) {next_permutation(begin(nums), end(nums));} };

?

轉(zhuǎn)載于:https://www.cnblogs.com/Atanisi/p/6759466.html

創(chuàng)作挑戰(zhàn)賽新人創(chuàng)作獎(jiǎng)勵(lì)來咯,堅(jiān)持創(chuàng)作打卡瓜分現(xiàn)金大獎(jiǎng)

總結(jié)

以上是生活随笔為你收集整理的【LeetCode】031. Next Permutation的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。