摘要:
vector<int>::iterator iter1 = partial_sort_copy(deq1.begin(), deq1.end(), vec1.begin(), vec1.end()); 阅读全文
posted @ 2019-06-12 21:13
西北逍遥
阅读(148)
评论(0)
推荐(0)
摘要:
#include <iostream>#include <deque>#include <algorithm>#include <vector>#include <functional> using namespace std; int main(){ deque<int> deq1; deque< 阅读全文
posted @ 2019-06-12 21:10
西北逍遥
阅读(219)
评论(0)
推荐(0)
摘要:
#include <iostream>#include <deque>#include <algorithm>#include <vector> using namespace std; int main(){ deque<int> deq1; deque<int>::iterator deq_it 阅读全文
posted @ 2019-06-12 21:08
西北逍遥
阅读(314)
评论(0)
推荐(0)
摘要:
#include <iostream>#include <deque>#include <algorithm>#include <vector> using namespace std; int main(){ deque<int> deq1; deque<int>::iterator deq_it 阅读全文
posted @ 2019-06-12 21:02
西北逍遥
阅读(632)
评论(0)
推荐(0)
摘要:
#include <iostream>#include <deque>#include <algorithm>#include <functional> using namespace std; int main(){ deque<int> deque1; for (int k=0;k<15;k++ 阅读全文
posted @ 2019-06-12 20:44
西北逍遥
阅读(255)
评论(0)
推荐(0)
摘要:
#include <iostream>#include <algorithm>#include <vector> using namespace std; int main(){ vector<int> vec1; for (int k=0;k<5;k++) { vec1.push_back(ran 阅读全文
posted @ 2019-06-12 20:03
西北逍遥
阅读(241)
评论(0)
推荐(0)
摘要:
#include <iostream>#include <algorithm>#include <vector>#include <iterator> using namespace std; int main(){ vector<int> vec1; for (int k=0;k<10;k++) 阅读全文
posted @ 2019-06-12 19:37
西北逍遥
阅读(454)
评论(0)
推荐(0)
摘要:
#include <iostream>#include <algorithm>#include <list>#include <iterator>#include <functional> using namespace std; int main(){ int source[] = { 1,2,3 阅读全文
posted @ 2019-06-12 19:18
西北逍遥
阅读(375)
评论(0)
推荐(0)
摘要:
#include <iostream>#include <algorithm>#include <list>#include <vector>#include <functional> using namespace std; int main(){ list<int> list1; for (in 阅读全文
posted @ 2019-06-12 17:14
西北逍遥
阅读(376)
评论(0)
推荐(0)
摘要:
#include <iostream>#include <list>#include <algorithm>#include <iterator>#include <functional> using namespace std; int main(){ list<int> list1; list< 阅读全文
posted @ 2019-06-12 16:37
西北逍遥
阅读(351)
评论(0)
推荐(0)
摘要:
#include <iostream>#include <algorithm>#include <vector>#include <list>#include <string>#include <functional>#include<iterator> using namespace std; i 阅读全文
posted @ 2019-06-12 16:08
西北逍遥
阅读(210)
评论(0)
推荐(0)
摘要:
#include <iostream>#include <vector>#include <deque>#include <algorithm> using namespace std; int main(){ vector<int> vec1; deque<int> deq1; for (int 阅读全文
posted @ 2019-06-12 12:44
西北逍遥
阅读(343)
评论(0)
推荐(0)
摘要:
#include<iostream>#include<vector>#include <list>#include <algorithm>#include <functional> using namespace std; //不需拷贝,速度快void square(int &elementPara 阅读全文
posted @ 2019-06-12 10:44
西北逍遥
阅读(306)
评论(0)
推荐(0)
摘要:
list<char>::iterator pos; 一般使用前置式递增(preincrement),因为它比后置式递增(postincrement)效率高,因为后置式递增内部需要一个临时对象,因为它必须存放迭代器原来的位置并返回之。 阅读全文
posted @ 2019-06-12 10:22
西北逍遥
阅读(740)
评论(0)
推荐(0)
摘要:
#include<iostream>#include<vector>#include <list>#include <algorithm>#include <functional> using namespace std; int main(){ vector<int> vec1; list<int 阅读全文
posted @ 2019-06-12 09:52
西北逍遥
阅读(443)
评论(0)
推荐(0)
摘要:
#include <iostream>#include <algorithm>#include <vector>#include <functional>#include <list> using namespace std; int main(){ list<int> list1; for (in 阅读全文
posted @ 2019-06-12 08:24
西北逍遥
阅读(364)
评论(0)
推荐(0)

浙公网安备 33010602011771号