创建N个嵌套for循环 [英] Creating N nested for-loops

查看:286
本文介绍了创建N个嵌套for循环的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有创建表单的for循环的方法

Is there a way to create for-loops of a form

for(int i = 0; i < 9; ++i) {
    for(int j = 0; j < 9; ++i) {
    //...
        for(int k = 0; k < 9; ++k) { //N-th loop

理想情况下,我试图找出一种方法循环通过数字向量的单独元素,以创建每个可能的数字,如果一定数量的数字替换为不同的数字。

without knowing N at the compile time. Ideally I'm trying to figure out a way to loop through separate elements of a vector of digits to create each possible number if a certain amount of digits is replaced with different digits.

推荐答案

您可以使用递归代替基本条件 -

You may use recursion instead with a base condition -

void doRecursion(int baseCondition){

   if(baseCondition==0) return;

   //place your code here

   doRecursion(baseCondition-1);
}  

现在您不需要提供 baseCondition 在编译时的值。您可以在调用 doRecursion()方法时提供。

Now you don't need to provide the baseCondition value at compile time. You can provide it while calling the doRecursion() method.

这篇关于创建N个嵌套for循环的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆