STL随笔
风清扬_jd
专注搬砖
展开
-
stl(三)------这是一个MSDN中的一个关于map 中find函数的说明 很好的一个例子
// map_find.cpp// compile with: /EHsc#include #include int main( ){ using namespace std; map m1; map :: const_iterator m1_AcIter, m1_RcIter; typedef pair Int_Pair;转载 2014-01-15 09:59:49 · 2492 阅读 · 0 评论 -
stl(二)------如何在vector中添加元素,以及遍历元素
#include "stdafx.h"#include#includeusing namespace std;int _tmain(int argc, _TCHAR* argv[]){vector Index;int i; for ( i= 0; i {Index.push_back(i); //元素添加 }//第一种用原创 2013-09-20 13:40:09 · 3155 阅读 · 0 评论 -
stl(四)------如何对map进行赋值std::map::operator=
// assignment operator with maps#include #include int main (){ std::mapchar,int> first; std::mapchar,int> second; first['x']=8; first['y']=16; first['z']=32; second=first;转载 2014-02-19 14:43:01 · 12860 阅读 · 0 评论 -
如果遍历map中最后一个元素rbegin(),end(),rend()
#include "stdafx.h"#include #include using namespace std;int _tmain(int argc, _TCHAR* argv[]){ map mymap; mymap['b'] = 100; mymap['a'] = 200; mymap['c'] = 300; map::iterator it=mymap.begi原创 2014-06-07 14:56:41 · 37529 阅读 · 0 评论 -
stl(一)------如何遍历map中的元素,以及如何在map中插入元素
#include "stdafx.h"#include #include using namespace std;int main(int argc, char* argv[]){map maptest;maptest.insert(make_pair(1,'a'));maptest.insert(make_pair(2,'a'));maptest.in原创 2013-09-17 18:41:30 · 3183 阅读 · 0 评论 -
stl(五)------生成 A-Z, AA - ZZ , AAA, -- ZZZ AAAA -- AAAZ 等序列的字符
The Z -> AA, ZZ -> AAA, ZZZ -> AAAA transitions had me stuck for a while (which seems to be a problem in the good Doctor's perl program), but the following C++ code seems to work.It uses the fai转载 2014-02-26 19:26:52 · 5299 阅读 · 0 评论 -
std::sort() 如何自定义比较函数 进行排序 。
/*std::sort() 如何自定义比较函数 进行排序 。Parametersfirst, last - the range of elements to sortpolicy - the execution policy to use. See execution policy for details.comp - comparison function object (i.e....原创 2018-07-11 22:52:14 · 22239 阅读 · 3 评论 -
stl中list的使用介绍
#include<list>#include<iostream>#include <algorithm>using namespace std;typedef std::list<int>CList;int _tmain(int argc, _TCHAR* argv[]){ CList listTmp; //1、初始化 for...原创 2018-07-30 22:48:10 · 568 阅读 · 0 评论