STL
c_tianzi
这个作者很懒,什么都没留下…
展开
-
发生器函数对象
pointer_to_unary_function Converts a unary(一元的) function pointer into an adaptable(适合的) unary function.templateclass pointer_to_unary_function : public unary_func原创 2013-07-08 17:40:52 · 1121 阅读 · 0 评论 -
C++Vector简单操作
好像vector和QVector不太一样。//iterator erase (const_iterator position);//iterator erase (const_iterator first, const_iterator last);//vector删除元素:// An iterator pointing to the new location of the ele原创 2013-10-20 09:38:19 · 930 阅读 · 0 评论 -
C++ Map基本操作
std map是STL的一个关联容器,它提供一对一(其中第一个可以称为关键字,每个关键字只能在map中出现一次,第二个可能称为该关键字的值)的数据处理能力,由于这个特性,它完成有可能在我们处理一对一数据的时候,在编程上提供快速通道。这里说下std map内部数据的组织,std map内部自建一颗红黑树(一种非严格意义上的平衡二叉树),这颗树具有对数据自动排序的功能,所以在std map内部所有转载 2013-11-22 01:10:27 · 1047 阅读 · 0 评论