【leetcode刷題】31. Next Permutation

原題鏈接 https://leetcode.com/problems/next-permutation/ 解題思路 從後往前先找出第一對爲升序的數字,使flag指向第一個數;再從後往前開始遍歷,當nums[i]大於nums[flag]時,交換這兩個數字,並break;最後將nums[flag+1:]倒過來,使它們變爲從小到大的排序,在輸出nums即可 代碼 class Solution(objec
相關文章
相關標籤/搜索