C++的四类循环分享

简介: C++的四类循环:Entry or Exit controlled, Ranged-based or For_each

In programming, sometimes there is a need to perform some operation more than once or (say) n number of times. Loops come into use when we need to repeatedly execute a block of statements.

在编程中,有时需要多次执行某些操作,例如n次。当我们需要重复执行一个语句块时,就会使用循环。

4 types of loops:

① Entry Controlled loops: while loop, for loop

② Exit Controlled Loops:

③ Range-based for loop

④ For_each loop

可以理解后两种循环是前两种循环的语法糖,编程语法制定语法规则,确定如何抽象,编程语言的编译器实现抽象的编译,程序员按规则写代码。

1 Entry Controlled loops
In this type of loop, the test condition is tested before entering the loop body. For Loop and While Loop is entry-controlled loops.

在这种类型的循环中,在进入循环体之前测试测试条件。For循环和While循环是入口控制循环。

1.1 for loop

include

int main()
{
int i=0;

for (i = 1; i <= 10; i++)
{
    printf( "Hello World\n");   
}

return 0;

}
1.2 while loop

include

int main()
{
// initialization expression
int i = 1;
// test expression
while (i < 6)
{
printf( "Hello World\n");

    // update expression
    i++;
}

return 0;

}
2 Exit Controlled Loops:
In this type of loop the test condition is tested or evaluated at the end of the loop body. Therefore, the loop body will execute at least once, irrespective of whether the test condition is true or false. the do-while loop is exit controlled loop.

在这种类型的循环中,在循环体的末端测试或评估测试条件。因此,无论测试条件是真还是假,循环体将至少执行一次。do while循环是出口控制循环。

include

int main()
{
int i = 2; // Initialization expression

do
{
    // loop body
    printf( "Hello World\n");   

    // update expression
    i++;

}  while (i < 1);   // test expression

return 0;

}
3 Range-based for loop
Range-based for loop in C++ is added since C++ 11. It executes a for loop over a range. Used as a more readable equivalent to the traditional for loop operating over a range of values, such as all elements in a container.

C++中基于范围的for循环是从C++11开始添加的。它在一个范围内执行for循环。用作在一系列值(例如容器中的所有元素)上进行操作的传统for循环的可读性更强的等价物。

syntax:

for ( range_declaration : range_expression )
loop_statement

Parameters :
range_declaration :
a declaration of a named variable, whose type is the
type of the element of the sequence represented by
range_expression, or a reference to that type.
Often uses the auto specifier for automatic type
deduction.

range_expression :
any expression that represents a suitable sequence
or a braced-init-list.

loop_statement :
any statement, typically a compound statement, which
is the body of the loop.
code demo:

include

include

include

int main()
{
// Iterating over whole array
std::vector v = {0, 1, 2, 3, 4, 5};
for (auto i : v)
std::cout << i << ' ';

std::cout << '\n';

// the initializer may be a braced-init-list
for (int n : {0, 1, 2, 3, 4, 5})
    std::cout << n << ' ';

std::cout << '\n';

// Iterating over array
int a[] = {0, 1, 2, 3, 4, 5};     
for (int n : a)
    std::cout << n << ' ';

std::cout << '\n';

// Just running a loop for every array
// element
for (int n : a)  
    std::cout << "In loop" << ' ';

std::cout << '\n';

// Printing string characters
std::string str = "Geeks";
for (char c : str) 
    std::cout << c << ' ';

std::cout << '\n';

// Printing keys and values of a map
std::map <int, int> MAP({
  {1, 1}, {2, 2}, {3, 3}});
for (auto i : MAP)
    std::cout << '{' << i.first << ", " 
              << i.second << "}\n";

}
4 for_each loop
This loop is defined in the header file “algorithm”: #include, and hence has to be included for successful operation of this loop.

该循环在头文件“算法”中定义:#include<algorithm>,因此必须包含该循环才能成功运行。

It is versatile, i.e. Can work with any container.

它是多功能的,即可以与任何容器一起工作。

It reduces chances of errors one can commit using generic for loop

它减少了使用泛型for循环犯错的机会

It makes code more readable

它使代码更具可读性

for_each loops improve overall performance of code

for_ each循环提高了代码的整体性能

syntax:

for_each (InputIterator start_iter, InputIterator last_iter, Function fnc)

start_iter : The beginning position
from where function operations has to be executed.
last_iter : The ending position
till where function has to be executed.
fnc/obj_fnc : The 3rd argument is a function or
an object function which operation would be applied to each element.
code demo:

include

include

include

using namespace std;

// helper function 1
void printx2(int a)
{
cout << a * 2 << " ";
}

// helper function 2
// object type function
struct Class2
{
void operator() (int a)
{
cout << a * 3 << " ";
}
} ob1;

int main()
{//代码效果参考:http://www.zidongmutanji.com/bxxx/474762.html

// initializing array
int arr[5] = { 1, 5, 2, 4, 3 };
cout << "Using Arrays:" << endl;

// printing array using for_each
// using function
cout << "Multiple of 2 of elements are : ";
for_each(arr, arr + 5, printx2);

cout << endl;

// printing array using for_each
// using object function
cout << "Multiple of 3 of elements are : ";
for_each(arr, arr + 5, ob1);

cout << endl;

// initializing vector
vector<int> arr1 = { 4, 5, 8, 3, 1 };
cout << "Using Vectors:" << endl;

// printing array using for_each
// using function
cout << "Multiple of 2 of elements are : ";
for_each(arr1.begin(), arr1.end(), printx2);

cout << endl;

// printing array using for_each
// using object function
cout << "Multiple of 3 of elements are : ";
for_each(arr1.begin(), arr1.end(), ob1);

cout << endl;

}
Invalid arguments may leads to Undefined behavior.

无效参数可能导致未定义的行为。

For_each can not work with pointers of an array (An array pointer do not know its size, for_each loops will not work with arrays without knowing the size of an array).

For_ each不能处理数组指针(数组指针不知道其大小,For_each循环在不知道数组大小的情况下不能处理数组)。

相关文章
|
1月前
|
设计模式 测试技术 编译器
C++项目中打破循环依赖的锁链:实用方法大全(一)
C++项目中打破循环依赖的锁链:实用方法大全
208 0
|
1月前
|
缓存 编译器 数据处理
【C/C++ 性能优化】循环展开在C++中的艺术:提升性能的策略与实践
【C/C++ 性能优化】循环展开在C++中的艺术:提升性能的策略与实践
153 0
|
12天前
|
C++
C++一分钟之-循环结构:for与while循环
【6月更文挑战第18天】在C++中,`for`循环适合已知迭代次数,如数组遍历;`while`循环适用于条件驱动的未知次数循环。`for`以其初始化、条件和递增三部分结构简洁处理重复任务,而`while`则在需要先检查条件时更为灵活。常见错误包括无限循环和逻辑错误,解决办法是确保条件更新和正确判断。了解两者应用场景及陷阱,能提升代码效率和可读性。
22 6
|
16天前
|
C语言 C++ 容器
c++primer plus 6 读书笔记 第五章 循环和关系表达式
c++primer plus 6 读书笔记 第五章 循环和关系表达式
|
2天前
|
程序员 编译器 C++
探索C++语言宝库:解锁基础知识与实用技能(类型变量+条件循环+函数模块+OOP+异常处理)
探索C++语言宝库:解锁基础知识与实用技能(类型变量+条件循环+函数模块+OOP+异常处理)
7 0
|
1月前
|
算法 程序员 C++
C++程序中的循环语句:实现重复执行的关键
C++程序中的循环语句:实现重复执行的关键
28 2
|
1月前
|
算法 C++
c++循环
c++循环
21 0
|
1月前
|
安全 编译器 程序员
【C++入门】内联函数、auto与基于范围的for循环
【C++入门】内联函数、auto与基于范围的for循环
|
1月前
|
C++ Python
C++教学——从入门到精通 10.循环
学习编程建议先Python后C++,以避免C++思维影响。课程涵盖for、while和do while循环。for循环示例:`for(int i=0;i&lt;n;i++)`,用于计算114514天后的金币总数(1145140个)。死循环通过`for(int i=0;;i++)`实现,用`break`退出。while循环格式`while(条件)`,同样可解决金币问题。do while循环特点是先执行后判断,结构为`do{...}while(条件)`。
28 2
|
1月前
|
C++
C++ 循环
C++ 循环
25 0