码迷,mamicode.com
首页 > 其他好文 > 详细

[Leetcode] Next Permutation

时间:2014-12-31 08:38:09      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:

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

 

Solution:

http://fisherlei.blogspot.com/2012/12/leetcode-next-permutation.html

算法思想如图所示:

技术分享

代码如下:

 1 public class Solution {
 2     public void nextPermutation(int[] num) {
 3         if(num.length<2)
 4             return;
 5         int N=num.length;
 6         int index=N-1;
 7         while(index>0){
 8             if(num[index]<=num[index-1])
 9                 index--;
10             else
11                 break;            
12         }
13         if(index==0){
14             Arrays.sort(num);
15             return;
16         }
17             
18         int val=num[index-1];
19         //System.out.println(val);
20         int j=N-1;
21         while(j>index-1){
22             if(num[j]>val){
23                 break;
24             }
25             else
26                 j--;
27         }
28     //    System.out.println(num[j]);
29         int temp=val;
30         num[index-1]=num[j];
31         num[j]=temp;
32         Arrays.sort(num, index, N);
33     }         
34 }

 

[Leetcode] Next Permutation

标签:

原文地址:http://www.cnblogs.com/Phoebe815/p/4194946.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!