程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> [LeetCode] Next Permutation

[LeetCode] Next Permutation

編輯:C++入門知識

[LeetCode] Next Permutation


Next Permutation Total Accepted: 14635 Total Submissions: 57694 My Submissions
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

分三步,

1. 從後往前,找到第一個不是遞增的數

2. 在從後往前找到一個比剛才那個數大的第一個數,交換位置

3. 在將第一個數後面的序列反轉

public class Solution {
    public void nextPermutation(int[] num) {
        if (num == null || num.length < 2) {
            return;
        }
        
        int len = num.length;
        
        int i = len - 2;
        for (; i >= 0; i--) {
            if (num[i] < num[i + 1]) {
                break;
            }
        }
        
        if (i == -1) {
            reverse(num, 0, len - 1);
            return;
        }
        
        for (int j = len - 1; j > i; j--) {
            if (num[j] > num[i]) {
                swap(num, j, i);
                break;
            }
        }
        
        reverse(num, i + 1, len - 1);
        return;
    }
    
    private void reverse(int[] num, int start, int end) {
        while (start < end) {
            swap(num, start, end);
            start++;
            end--;
        }
    }
    
    private void swap(int[] num, int i, int j) {
        int temp = num[i];
        num[i]  = num[j];
        num[j] = temp;
    }
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved