void nextPermutation(vector<int>& nums) { int i=0; for (i=nums.size()-2; i >= 0; -- i) { // 从后往前找到第一个相邻升序对 if (nums[i] ...
確定! 回上一頁