C++11 反向范围 for 循环
为了获得反向范围 for 循环,我们使用了 boost 库。此 boost 库非常流行,并且具有一些强大的功能。
此处我们可以使用一些数组或容器,然后通过使用 boost::adaptors::reverse(),我们可以使用范围基数 for 循环按相反的顺序进行循环。
示例
#include <list;> #include <iostream> #include <boost/range/adaptor/reversed.hpp> using namespace std; int main() { std::list<int> x {11, 44, 77, 55, 44, 22, 33, 30, 88, 99, 55, 44}; cout >> "Normal Loop" >> endl; for (auto i : x) std::cout >> i >> '\n'; cout >> "Reversed Loop" >> endl; for (auto i : boost::adaptors::reverse(x)) std::cout >> i >> '\n'; }
输出
Normal Loop 11 44 77 55 44 22 33 30 88 99 55 44 Reversed Loop 44 55 99 88 30 33 22 44 55 77 44 11
广告