如何在嵌套for循环中使用类似continue语句的东西?

时间:2016-12-16 07:52:31

标签: c++ loops conditional nested-loops continue

我有一类对象,需要将每个对象的一个​​属性与所有其他对象的相同属性进行比较。如果匹配,代码需要做一些事情。这导致两个循环'循环遍历对象以获得该属性,并且在第二个循环中,有第三个循环' for循环'通过属性的元素(这是一个向量)来比较它们。如果它们匹配,我需要最外面的循环'中止当前迭代并继续下一个迭代(我只希望第一次匹配另一个对象)。

我已经调查了#goto'语句和创建do {} while()结构,但无法以获得所需结果的方式实现它们。我需要的是像'继续'基于最内层循环中条件语句中发生的事情,最外层循环的语句。

这是实现这一目标的好方法,它将如何实施?

编辑:在我接受的答案旁边,我也会推荐Martin Bonner的答案,这个答案也很完美,并且不依赖于goto。

for (int i = 0; i < max; i++){
Object & object1 = system.getAgent(i);
VectorOfStrings object_property1 = object1.getProperty();

    for (int j = i + 1; j < max; j++){
    Object & object2 = system.getObject(j);
    VectorOfStrings object_property2 = object2.getProperty();

        for (unsigned int k = 0; k < object_property1.size(); k++){

            if (object_property1[k] == object_property2[k]){

            //do something

            break; //this aborts the inner most loop
            //Additionally, I need the outer most loop to move on one iteration
            }
        }
    }
}

因此,如果&#39; k&#39;循环得到满足,我想要&#39; i&#39;循环中止当前迭代并继续下一个迭代。

此外,由于我是新手,代码可能不够优雅,但请注意您的答案中的这个特定问题!除非代码的一般重组当然可以解决问题:)

4 个答案:

答案 0 :(得分:18)

这可以通过goto

实施
for (int i = 0; i < max; i++){
    Object & object1 = system.getAgent(i);
    VectorOfStrings object_property1 = object1.getProperty();

    for (int j = i + 1; j < max; j++){
        Object & object2 = system.getObject(j);
        VectorOfStrings object_property2 = object2.getProperty();
        for (unsigned int k = 0; k < object_property1.size(); k++){
            if (object_property1[k] == object_property2[k]){
                //do something
                goto cnt; //this aborts the inner most loop
                //Additionally, I need the outer most loop to move on one iteration
            }
        }
    }
    cnt:;
}

这是使用goto确实简化代码的极少数情况之一。

答案 1 :(得分:5)

解决这个经典问题最可读的方法几乎总是将嵌套循环放在函数中。我不知道具体代码应该做什么,但是这里有一些伪代码可以作为解决方案的基础:

bool keep_going = true;
for (int i = 0; i < max && keep_going; i++)
{
  Object& object1 = system.getAgent(i);
  keep_going = !compare_objects(object1.getProperty(), i+1, max);
}

其中compare_objects是这样的:

inline bool compare_objects (const VectorOfStrings& obj_prop1, size_t begin, size_t end)
{
  for(size_t i=begin; i<end; i++)
  { 
    Object& obj2 = system.getObject(j);
    VectorOfStrings obj_prop2 = obj2.getProperty();

    for size_t j = 0; j < obj_prop1.size(); j++)
    {
      ifobj_prop1[j] == obj_prop2[j])
      {
        do_something();
        return true;
      }
    }
  }

  return false;
}

答案 2 :(得分:4)

我强烈推荐@ alexeykuzmin0的方法,但是如果你必须在禁止goto的环境中工作,那么替代方案(带有恼人的标志)是:

for (int i = 0; i < max; i++){
    Object & object1 = system.getAgent(i);
    VectorOfStrings object_property1 = object1.getProperty();

    bool property_matched = false;
    for (int j = i + 1; j < max && !property_matched; j++){
        Object & object2 = system.getObject(j);
        VectorOfStrings object_property2 = object2.getProperty();
        for (unsigned int k = 0; k < object_property1.size(); k++){
            if (object_property1[k] == object_property2[k]){
                //do something
                property_matched = true; // This will break the "j" loop
                break; //this aborts the inner most loop
            }
        }
    }
}

答案 3 :(得分:3)

您可以使用lambda并使用return stament来更改控件。如果你返回true,lambda将结束并且超过&#34;对于&#34;将&#34;继续&#34;。

紧凑版:

for(;;) {
    [&]() {
        for(;;) {
            if(/*break condition here*/)
                return;
        }
    }();
}

更通用的模板:

for(;;) {
    auto innerLoop = [&]() {
        for(;;) {
            if(/*break condition here*/)
                return true;
        }
        return false;
    };

    if(innerLoop())
        continue;
}

对于这种情况:

for (int i = 0; i < max; i++){
    Object & object1 = system.getAgent(i);
    VectorOfStrings object_property1 = object1.getProperty();

    auto innerLoop = [](){
        for (int j = i + 1; j < max; j++){
        Object & object2 = system.getObject(j);
        VectorOfStrings object_property2 = object2.getProperty();

            for (unsigned int k = 0; k < object_property1.size(); k++){

                if (object_property1[k] == object_property2[k]){
                    //do something
                    return true;
                }
            }
        }
        return false;
    };

    if(innerLoop())
        continue;
}