Java实现全排序
Posted 梦见舟
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java实现全排序相关的知识,希望对你有一定的参考价值。
package org.example.test;
import java.util.Stack;
public class QuanPaiXu {
public static void main(String[] args) {
perm(new int[]{1, 2, 3, 4, 5, 6, 7, 8, 9}, new Stack<Integer>());
}
public static void perm(int[] array, Stack<Integer> stack) {
if (array.length == 0) {
System.out.println(stack);
} else {
for (int i = 0; i < array.length; i++) {
int[] tempArray = new int[array.length - 1];
System.arraycopy(array, 0, tempArray, 0, i);
System.arraycopy(array, i + 1, tempArray, i, array.length - i - 1);
stack.push(array[i]);
perm(tempArray, stack);
stack.pop();
}
}
}
}
原始链接:
https://blog.csdn.net/weixin_42220532/article/details/90900815
以上是关于Java实现全排序的主要内容,如果未能解决你的问题,请参考以下文章