- 在STL中旋转:它以[first,last)范围内的元素顺序旋转,这样,由Middle指向的元素将成为新的第一个元素,即左侧。
// Illustrating the use of rotate algorithm #include
using namespace std; // Driver Program int main() { vector arr; // set some values: 1 2 3 4 5 6 // 7 8 9 for (int i = 1; i < 10; ++i) arr.push_back(i); // Use of rotate rotate(arr.begin(), arr.begin() + 3, arr.end()); // prints the content: cout << "arr contains:"; for (auto i = arr.begin(); i != arr.end(); i++) cout << ' ' << *i; cout << endl; return 0; } 输出:
arr contains: 4 5 6 7 8 9 1 2 3
- rotation_copy :它将范围为[first,last]的元素复制到从结果开始的范围,但是旋转元素的顺序,使得由Middle指向的元素成为结果范围中的第一个元素,即,向左旋转。
// Illustrating the use of rotate_copy #include
using namespace std; // Driver Program int main() { int arr[] = { 10, 20, 30, 40, 50, 60, 70 }; // Use of rotate_copy vector gfg(7); rotate_copy(arr, arr + 3, arr + 7, gfg.begin()); // prints the content: cout << "gfg contains:"; for (auto i = gfg.begin(); i != gfg.end(); i++) cout << ' ' << *i; cout << endl; return 0; } 输出:
gfg contains: 40 50 60 70 10 20 30
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。