j有没有办法创建以下代码的递归函数?
for(int i=0; i<1000000; i++){
for(int j=0; j<1000000; j++){
for(int k=0; k<1000000; k++){
//Do something using i,j and k
}
}
}
我需要它来组合每一个可能的数字序列。例如: (0,0,0) (0,0,1) (0,1,0)
通过这个循环大约需要 10 个小时,所以我必须简化它,我认为递归函数可以做到这一点。
谢谢