码迷,mamicode.com
首页 >  
搜索关键字:vector iterators inc    ( 14378个结果
将MultiBytes应用转换成Unicode应用
1,项目属性选择Unicode;2,添加#include ;3,所有的""转换成_T("");4,看具体代码:for( std::vector::iterator iterator=service.m_tDeviceList.begin(); iterator!=serv...
分类:其他好文   时间:2014-05-26 23:41:29    阅读次数:522
CPP-STL:用vector保存对象时保存指针的优点, 以及reserve的使用(转)
代码1[cpp]view plaincopy#include#includeclassA{public:A(){printf("A()/n");}~A(){printf("~A()/n");}A(constA&other){printf("other/n");}};intmain(){Aa;Ab(....
分类:其他好文   时间:2014-05-26 22:18:50    阅读次数:382
贪心(盈利问题)
DescriptionAccounting for Computer Machinists (ACM) has sufferred from the Y2K bug and lost some vital data for preparing annual report for MS Inc.All...
分类:其他好文   时间:2014-05-26 22:06:57    阅读次数:213
Qt编译Oracle OCI驱动
工作中经常用到Oracle,而默认情况下Qt只有Sqlite和ODBC驱动,网上有相应的驱动安装介绍,自己实验可行:QT环境:Qt5.0.2 /MinGW4.7.2/WIN7 32bit打开Qt Command Prompt,分别执行以下命令,以编译Oracle驱动:set INCLUDE=%inc...
分类:数据库   时间:2014-05-26 21:26:02    阅读次数:381
hdu 2680 Choose the best route 解题报告
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2680题目意思:实质就是给定一个多源点到单一终点的最短路。 卑鄙题~~~有向图。初始化map时 千万不要写成 map[i][j] = map[j][i] = X。 1 #include 2 #inc...
分类:其他好文   时间:2014-05-26 12:45:46    阅读次数:255
java 集合类
集合类说明及区别Collection├List│├LinkedList│├ArrayList│└Vector│ └Stack└SetMap├Hashtable├HashMap└WeakHashMapCollection接口 Collection是最基本的集合接口,一个Collection代表一组O....
分类:编程语言   时间:2014-05-26 09:32:53    阅读次数:258
C++容器
第1章 容器第1条:慎重选择容器类型。标准STL序列容器:vector、string、deque和list。标准STL关联容器:set、multiset、map和multimap。非标准序列容器slist和rope。slist是一个单向链表,rope本质上是一“重型”string。非标准的关联容器h...
分类:编程语言   时间:2014-05-26 08:14:34    阅读次数:384
STL
有序容器:vector[连续内存] 拥有一段连续的地址空间,首地址不变,按顺序存放,拥有高效的随机存储和访问,毕竟有迭代器作为序号。 从尾部插入和删除很快,其他地方插入和删除操作的时间复杂度就高喽,需要大范围内存的复制粘贴,效率低下,就像数组一样.有空间预留的特点,操作起来消耗内存空间。capa.....
分类:其他好文   时间:2014-05-26 07:10:59    阅读次数:244
leetcode题目:Sum Root to Leaf Numbers和Longest Consecutive Sequence
题目一: Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number. An example is the root-to-leaf path 1->2->3 which represents the number 123. Fin...
分类:其他好文   时间:2014-05-26 04:06:41    阅读次数:248
设计模式(9.1)--迭代器与组合模式
缓存(caching): 当组合结构很复杂,或者遍历的代价太高,那么实现组合节点的缓存就很有帮助。 (1) Java Collection Framework 指的是一群类的接口。 其中包括了 ArrayList, Vector , LinkedList , Stack ,和 PriorityQueue. 这些类都实现了java.util.Collection接口。 (2) Collect...
分类:其他好文   时间:2014-05-24 23:37:45    阅读次数:432
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!