排列的字典序问题(Java)
Posted nuist__NJUPT
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了排列的字典序问题(Java)相关的知识,希望对你有一定的参考价值。
思想:前缀法求字典序全排列,count计数,对比是否等于输入的排列,等于则打印count,并且输入下一个字典序的全排列。
import java.util.Arrays;
import java.util.Scanner;
public class Permutation1 {
static int count = 0, temp = 0 ;
static boolean flag = false ;
public static boolean check(String prefix, char [] arr, char c){//c在前缀中的个数要小于在数组中的个数才能递归
int sum1 = 0, sum2 = 0 ;
for(int i=0; i<prefix.length(); i++){
if(c == prefix.charAt(i)){
sum1 ++ ;
}
}
for(int j=0; j<arr.length; j++){
if(c == arr[j]){
sum2 ++ ;
}
}
if(sum2 > sum1){
return true ;
}else{
return false ;
}
}
public static void permutation(String prefix, char [] arr, char [] t){ //求全排列
if(prefix.length() == arr.length){
if(prefix.equals(String.valueOf(t).trim())) { //找出与输入字符相等的输出为字典序全排列第几个
flag = true ;
temp = count ;
System.out.println(count);
}
if(temp+1 == count && flag){ //输出下一个
for(int i=0; i<prefix.length(); i++){
System.out.print(prefix.charAt(i) + " ");
}
}
count ++ ;
return ;
}
for(int i=0; i<arr.length; i++){
char c = arr[i] ;
if(check(prefix, arr, c))
permutation(prefix+c, arr, t);
}
}
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int n = input.nextInt();
char[] c = new char[n];
char[] t = new char[n] ;
for (int i = 0; i < n; i++) {
c[i] = input.next().charAt(0);
t[i] = c[i] ;
}
Arrays.sort(c) ;
permutation("", c, t);
}
}
以上是关于排列的字典序问题(Java)的主要内容,如果未能解决你的问题,请参考以下文章