排列組合java
A. java裡面關於多重條件,排列組合的條件怎麼快捷操作
我不知道有沒有專門關於排列組合的特別方法,我想應該是沒有的。計算機的思路本來就是一個個條件篩選,即遍歷。
有個思路比if會稍微好一些,用 switch/case,最外層判斷A,有4個case,case中再嵌套 switch/case來判斷B,再用B的case來嵌套 switch/case來判斷C,再用C的case來嵌套 switch/case來判斷D。
B. Java程序如何實現對字元串的排列組合問題
import java.math.BigInteger;
import java.util.*;
public class PermutationGenerator {
private int[] a;
private BigInteger numLeft;
private BigInteger total;
public PermutationGenerator(int n) {
if (n < 1) {
throw new IllegalArgumentException("Min 1");
}
a = new int[n];
total = getFactorial(n);
reset();
}
public void reset() {
for (int i = 0; i < a.length; i++) {
a[i] = i;
}
numLeft = new BigInteger(total.toString());
}
public BigInteger getNumLeft() {
return numLeft;
}
public BigInteger getTotal() {
return total;
}
public boolean hasMore() {
return numLeft.compareTo(BigInteger.ZERO) == 1;
}
private static BigInteger getFactorial(int n) {
BigInteger fact = BigInteger.ONE;
for (int i = n; i > 1; i--) {
fact = fact.multiply(new BigInteger(Integer.toString(i)));
}
return fact;
}
public int[] getNext() {
if (numLeft.equals(total)) {
numLeft = numLeft.subtract(BigInteger.ONE);
return a;
}
int temp;
// Find largest index j with a[j] < a[j+1]
int j = a.length - 2;
while (a[j] > a[j + 1]) {
j--;
}
// Find index k such that a[k] is smallest integer
// greater than a[j] to the right of a[j]
int k = a.length - 1;
while (a[j] > a[k]) {
k--;
}
// Interchange a[j] and a[k]
temp = a[k];
a[k] = a[j];
a[j] = temp;
// Put tail end of permutation after jth position in increasing order
int r = a.length - 1;
int s = j + 1;
while (r > s) {
temp = a[s];
a[s] = a[r];
a[r] = temp;
r--;
s++;
}
numLeft = numLeft.subtract(BigInteger.ONE);
return a;
}
//程序測試入口
public static void main(String[] args) {
int[] indices;
String[] elements = { "a", "b", "c"};
PermutationGenerator x = new PermutationGenerator(elements.length);
StringBuffer permutation;
while (x.hasMore())
{
permutation = new StringBuffer("%");
indices = x.getNext();
for (int i = 0; i < indices.length; i++) {
permutation.append(elements[indices[i]]).append("%");
}
System.out.println(permutation.toString());
}
}
}
先給你一個看看!
C. java排列組合演算法
//這個程序是以前用高分求來的,現在稍作修改,呵呵
public class Zuhe {
public static void main(String[] args) {
String s = "122345";//這里是要用到的所有數組成的一個字元串,其它字元同樣適用
char[] c = s.toCharArray();
new Zuhe().zuhe(c,c.length,0);
System.out.println("可能的組合數:"+kk);
}
static int kk=0;
private void zuhe(char[] array, int n, int k) {
if (n == k) {
if(array[2]!='4'){//第三個位置不能出現4
String str = new String(array);
if(str.indexOf("53")<0&&str.indexOf("35")<0){//3,5不能連續出現
System.out.println(str);
++kk;
}
}
} else {
for (int i = k; i < n; i++) {
swap(array, k, i);
zuhe(array, n, k + 1);
swap(array, i, k);
}
}
}
private void swap(char[] a, int x, int y) {
char temp = a[x];
a[x] = a[y];
a[y] = temp;
}
}
========結果=========
122345
122543
123245
123254
123425
123452
125432
125423
125243
125234
122345
122543
123245
123254
123425
123452
125432
125423
125243
125234
132245
132254
132425
132452
132542
132524
132245
132254
132425
132452
132542
132524
142325
142523
143225
143252
143225
143252
142325
142523
145232
145223
145223
145232
152342
152324
152432
152423
152243
152234
152342
152324
152432
152423
152243
152234
212345
212543
213245
213254
213425
213452
215432
215423
215243
215234
221345
221543
223145
223154
223415
223451
225431
225413
225143
225134
232145
232154
232415
232451
232541
232514
231245
231254
231425
231452
231542
231524
242315
242513
243215
243251
243125
243152
241325
241523
245132
245123
245213
245231
252341
252314
252431
252413
252143
252134
251342
251324
251432
251423
251243
251234
221345
221543
223145
223154
223415
223451
225431
225413
225143
225134
212345
212543
213245
213254
213425
213452
215432
215423
215243
215234
231245
231254
231425
231452
231542
231524
232145
232154
232415
232451
232541
232514
241325
241523
243125
243152
243215
243251
242315
242513
245231
245213
245123
245132
251342
251324
251432
251423
251243
251234
252341
252314
252431
252413
252143
252134
322145
322154
322415
322451
322541
322514
321245
321254
321425
321452
321542
321524
325142
325124
325412
325421
325241
325214
322145
322154
322415
322451
322541
322514
321245
321254
321425
321452
321542
321524
325142
325124
325412
325421
325241
325214
312245
312254
312425
312452
312542
312524
312245
312254
312425
312452
312542
312524
315242
315224
315422
315422
315242
315224
342125
342152
342215
342251
342521
342512
341225
341252
341225
341252
341522
341522
342125
342152
342215
342251
342521
342512
345122
345122
345212
345221
345221
345212
422315
422513
423215
423251
423125
423152
421325
421523
425132
425123
425213
425231
422315
422513
423215
423251
423125
423152
421325
421523
425132
425123
425213
425231
432215
432251
432125
432152
432512
432521
432215
432251
432125
432152
432512
432521
431225
431252
431225
431252
431522
431522
412325
412523
413225
413252
413225
413252
412325
412523
415232
415223
415223
415232
452312
452321
452132
452123
452213
452231
451322
451322
451232
451223
451223
451232
452312
452321
452132
452123
452213
452231
522341
522314
522431
522413
522143
522134
523241
523214
523421
523412
523142
523124
521342
521324
521432
521423
521243
521234
522341
522314
522431
522413
522143
522134
523241
523214
523421
523412
523142
523124
521342
521324
521432
521423
521243
521234
542321
542312
542231
542213
542123
542132
543221
543212
543221
543212
543122
543122
542321
542312
542231
542213
542123
542132
541322
541322
541232
541223
541223
541232
512342
512324
512432
512423
512243
512234
513242
513224
513422
513422
513242
513224
512342
512324
512432
512423
512243
512234
可能的組合數:396
D. JAVA排列組合演算法如題:用x、y,求出指定長度的所有排列組合。
按照你的要求編寫的求x,y指定長度的所有排列組合的Java程序如下
importjava.util.ArrayList;
importjava.util.List;
publicclassEE{
publicstaticvoidcombination(List<String>list,StringsNumbers,StringsPath,intALen)
{
if(sPath.length()==ALen)
{
list.add(sPath);
return;
}
for(inti=0;i<sNumbers.length();i++)
{
combination(list,sNumbers,sPath+sNumbers.substring(i,i+1),ALen);
}
}
publicstaticvoidmain(String[]args){
List<String>output=newArrayList<String>();
System.out.println("組合");
combination(output,"xy","",5);
for(Strings:output)
System.out.print(s+"");
System.out.println();
System.out.println("共"+output.size()+"個");
}
}
運行結果
組合
xxxxx xxxxy xxxyx xxxyy xxyxx xxyxy xxyyx xxyyy xyxxx xyxxy xyxyx xyxyy xyyxx xyyxy xyyyx xyyyy yxxxx yxxxy yxxyx yxxyy yxyxx yxyxy yxyyx yxyyy yyxxx yyxxy yyxyx yyxyy yyyxx yyyxy yyyyx yyyyy
共32個
E. 求解釋一段代碼,關於Java中排列組合的問題
ArrayList<Character>
newblist=new
ArrayList<Character>(blist);
是用blist的值創建一個新的ArrayList
如果
newblist
=
blist;這樣,那兩個ArrayList使用的是同一個引用,操作一個會影響另一個。
------------------------------------------------------------------------------------------------------------------------
這個代碼的遞歸思想是這樣的。
alist是數據,blist是結果
循環alist,創建出一個newalist備份,將alist中的一個元素添加到newblist.add(alist.get(i));中,
並在newalist中刪除。
將這兩個新的對象遞歸下去。
[1,2,3]
[]
[2,3]
[1]
[3]
[1,2]
--------------------
遞歸使用的是新創建的list
所以方法結束後,對alist,blist沒有影響
[2,3]
[1]
[2]
[1,3]
F. 求java實現String list[] = { "1", "2", "3" }; 的排列組合代碼
對於這個問題,我首先需要糾正一下樓主的措辭,這是個組合問題,跟排列無關,用排列組合亦不恰當。下面說下我的想法
元素不能重復,首先應該去掉相同的元素,最好的辦法是用set來實現。參考api
Arrays.asList
set.addAll
其實呢,這個是一個遞歸的過程,考慮下面情況
對於數組
{「1」},它的組合數就是{「1」}。
如果再加上一個元素「2「到上面的數組中,那麼,如果這個」2「不用,實質上跟{"1"}的情況是一樣的,這與不能重復相矛盾,所以」2「一定要用,就是在"1"中再加上」2「;於是我們得到
對於數組{」1「,」2「}它的組合數是{」1「}
再加入一個{」2「}。也許你也考慮到另外一種情況,即」2「也是它的一個組合數,我們考慮丟了,為什麼呢,因為在{」1「}中實質上還有一個稱為空的集合。這樣的話,重新整理一下:
1.對於list
=
{"1"},它的組合包括
{"1"},以及
empty.
2.對於list={"1","2"},它的組合包括{」1「,」2「}(在{」1「}中加了」2「),{」2「}(在empty中加入」2「),也許你還會講還應該包括{」1「},但是這個{」1「}我們已經在第1步就已經算出來了,不用再考慮了。
按照這樣的規則進行下去,你會發現這樣就把所有的組合數遍歷出來了。要具體的代碼就等會兒,我現在有事。
G. java 排列順序,排列組合怎麼做
import java.io.File;
import java.util.*;
import java.util.Random;
import java.util.Scanner;
import java.io.FileWriter;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import java.io.FileNotFoundException;
public class TheDa {
public static void main(String args[]) throws Exception {
System.out.println("please input the name for the list");
Scanner inputReader = new Scanner(System.in);
String TheDalist = inputReader.nextLine();
String[] newstr=TheDalist.split("\\s+");
if (newstr.length !=4) { System.out.println("the length is not ok"); }
else {
if ((newstr[0].equals("Joe")) && (newstr[1].equals("William")) &&(newstr[2].equals("Jack")) && (newstr[3].equals("Averell"))) {
System.out.println("True");
}
else if ((newstr[0].equals("Averell")) && (newstr[1].equals("Jack")) &&(newstr[2].equals("William")) && (newstr[3].equals("Joe"))) {
System.out.println("True");
}
else {
System.out.println("False");
}
}
}
}
H. java 排列組合問題
import java.io.*;
public class Test {
public static void main(String args[]) {
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
System.out.println("請輸入要排序的個數:");
String str=null;
try {
str=br.readLine();
} catch(IOException e) {}
int num=0;
int data[];
try {
num=Integer.parseInt(str);
System.out.println("請輸入"+num+"個數,以空格隔開");
String line=br.readLine();
data=new int[num];
String temp[]=new String[num];
temp=line.split(" ");
for (int i=0;i<num;i++) {
data[i]=Integer.parseInt(temp[i]);
}
sort(data);
} catch(NumberFormatException e) {
System.out.println("數據格式不正確");
} catch(IOException e) {}
}
//數組排序方法
public static void sort(int [] d) {
int l=d.length;
for (int i=0;i<l-1;i++) {
for (int j=0;j<l-1-i;j++) {
if (d[i]>d[i+1]) {
int temp=d[i];
d[i]=d[i+1];
d[i+1]=temp;
}
}
}
}
}
I. java實現排列組合
2位數排列組合的話,應該不止[1,2],[2,3],[3,4]吧?
代碼在下面:
privatevoidpailie(char[]a){
for(inti=0;i<a.length-1;i++){
for(intj=i+1;j<a.length;j++){
System.out.print("["+a[i]+","+a[j]+"]");
}
}
}
J. java實現排列組合輸出
完成了一種實現,發給你參考下。
不過感覺應該還有更好的辦法,有時間我會繼續研究下.
importjava.util.ArrayList;
importjava.util.Arrays;
importjava.util.HashSet;
importjava.util.List;
importjava.util.Set;
publicclassTestQiuhe{
//集合a{1,2,3,5,7,10},輸出不多於4個元素(不重復)的加和為22的組合。
publicstaticvoidmain(String[]args){
int[]nums={1,2,3,5,7,10};
intl=nums.length;
List<int[]>results=newArrayList<int[]>();
for(inti1=0;i1<l;i1++){
for(inti2=0;i2<l;i2++){
if(nums[i1]==22){
results.add(newint[]{nums[i1]});
}
if(i2!=i1){
if(nums[i1]+nums[i2]==22){
results.add(newint[]{nums[i1],nums[i2]});
}
for(inti3=0;i3<l;i3++){
if(i3!=i1&&i3!=i2){
if(nums[i1]+nums[i2]+nums[i3]==22){
results.add(newint[]{nums[i1],nums[i2],nums[i3]});
}
for(inti4=0;i4<l;i4++){
if(i4!=i1&&i4!=i2&&i4!=i3){
if(nums[i1]+nums[i2]+nums[i3]+nums[i4]==22){
results.add(newint[]{nums[i1],nums[i2],nums[i3],nums[i4]});
}
}
}
}
}
}
}
}
//去重
Set<String>reSet=newHashSet<>();
for(int[]r:results){
Arrays.sort(r);
reSet.add(Arrays.toString(r));
}
System.out.println("一共得到結果集:"+reSet.size());
System.out.println(reSet);
}
}
運行結果:
一共得到結果集:2
[[5, 7, 10], [2, 3, 7, 10]]