如何使用 std:move 和后插入器将 std::list 中的元素移动到末尾?
How to move an element in std::list to the end using std:move and back inserter?
在我的 std::list 中,我有 10 个元素,我想将数字 1000 移到列表的后面。
https://leetcode.com/playground/gucNuPit
是否有更好的方法,使用 std::move、后插入器或任何其他 C++ 语法的 1 衬里有意识地实现此目的?
// Move the number 1000 to the end of the list
#include <iostream>
#include <algorithm>
#include <list>
using namespace std;
int main() {
list<int> myList({2,3,4,1000,5,6,7,8,9,10});
cout << "List before " << endl;
for(auto e : myList)
cout << e << " ";
// get iterator to the number 1000 in the list
list<int>::iterator findIter = std::find(myList.begin(), myList.end(), 1000);
int val_to_move_to_end = *findIter;
myList.erase(findIter);
myList.push_back(val_to_move_to_end);
cout << endl << endl << "List after " << endl;
for(auto e : myList)
cout << e << " ";
return 0;
}
您可以使用 std::list::splice(..)
来实现这个
myList.splice(myList.end(), myList, std::find(myList.begin(), myList.end(), 1000));
在我的 std::list 中,我有 10 个元素,我想将数字 1000 移到列表的后面。
https://leetcode.com/playground/gucNuPit
是否有更好的方法,使用 std::move、后插入器或任何其他 C++ 语法的 1 衬里有意识地实现此目的?
// Move the number 1000 to the end of the list
#include <iostream>
#include <algorithm>
#include <list>
using namespace std;
int main() {
list<int> myList({2,3,4,1000,5,6,7,8,9,10});
cout << "List before " << endl;
for(auto e : myList)
cout << e << " ";
// get iterator to the number 1000 in the list
list<int>::iterator findIter = std::find(myList.begin(), myList.end(), 1000);
int val_to_move_to_end = *findIter;
myList.erase(findIter);
myList.push_back(val_to_move_to_end);
cout << endl << endl << "List after " << endl;
for(auto e : myList)
cout << e << " ";
return 0;
}
您可以使用 std::list::splice(..)
来实现这个
myList.splice(myList.end(), myList, std::find(myList.begin(), myList.end(), 1000));