递归——数组全排列
【递归——数组全排列】方法一 深度
import java.util.Scanner;
public class Main {public static void main(String[] args) {
//Scanner sc = new Scanner (System.in);
int sz[] = {1,2,3,4,5,6};
digui(sz,0,5);
}
public static void swap(int aa[],int m,int n) {
int x =aa[n];
aa[n]=aa[m];
aa[m]=x;
}
public staticvoid digui(int aa[],int start ,int end) {
if(start==end) {
for(int i=0;
i
方法二 字典序递归
public class Main {
static int aa[]= {1,2,3};
static int bb[]=new int[aa.length];
public static void main(String[] args) {
pailie(0);
}
public static void pailie(int dibiao) {
if(dibiao==aa.length) {
shuchu();
return;
}
else {
for(int i=0;
i
推荐阅读
- 急于表达——往往欲速则不达
- 慢慢的美丽
- 《真与假的困惑》???|《真与假的困惑》??? ——致良知是一种伟大的力量
- 2019-02-13——今天谈梦想()
- 考研英语阅读终极解决方案——阅读理解如何巧拿高分
- Ⅴ爱阅读,亲子互动——打卡第178天
- 低头思故乡——只是因为睡不着
- 取名——兰
- 每日一话(49)——一位清华教授在朋友圈给大学生的9条建议
- 广角叙述|广角叙述 展众生群像——试析鲁迅《示众》的展示艺术