
STL学习
JUAN425
这个作者很懒,什么都没留下…
展开
-
C++ templates(模板)
一般的函数可以take arguments of specific types and have a specific翻译 2014-07-22 21:30:03 · 647 阅读 · 0 评论 -
关于如何在vector中的某些元素(这些元素均是相同的值)之前插入一个特定的值
源于C++ primer。 大清早的, 明总正在为C++ Primer上的一个关于在一vector上插入元素的例子捉急。 out of curiosity, 看了一下, 基本上是关于插入引起迭代器失效的应用。下面, 摘自C++primer 中文版第309页习题9.3.1的练习题。假定iv是一个int的vector, 下面程序存在什么错误? 如何修改vector::i原创 2015-03-26 11:16:08 · 2034 阅读 · 0 评论 -
测试std::sort 和std::qsort 的性能, 修改编译器栈大小
根据effective STL中Item 46 提到, C程序员很难接受C++的STL中std::sort(定义于头文件)竟然比C语言的std::qsort(定义与头文件中)快了670%。 最后Scot Meyer建议我们我们要使用C++的std::sort函数。 我们知道qsort 实现的排序算法是快排, 但是std::sort 实现的排序算法并不知道, 有人说这得看是哪一个STL版本了。原创 2015-03-03 18:36:41 · 4425 阅读 · 0 评论 -
C++ STL vector
作为一个effective C++ programmer, 必须需要翻译 2014-10-21 18:50:30 · 931 阅读 · 0 评论 -
STL
std::vector::reservevoid reserve (size_type n);Request a change in capacityRequests that the vector capacity be at least enough to contain n elements.If n is greater than the current v转载 2014-10-30 19:06:36 · 581 阅读 · 0 评论 -
STL: sorted data algorithms and Numeric Algorithms
sorted data algorithm 只能yo翻译 2014-07-27 20:00:31 · 683 阅读 · 0 评论 -
STL: non-modifying algorithms
接下来, 我们主要介绍STL中的算法。翻译 2014-07-26 22:37:35 · 748 阅读 · 0 评论 -
仿函数(functors)
functor(仿函数), 或者称之为function object(函数对象), 是STL的四大组件之一。什么是仿函数呢? 一个函数对象是封装在类中, 从而看起来更像是一个对象。 这个类只有一个成员函数, 即重载了() (括号)的运算符。 它没有任何数据。 该类被模板化了, 从而可以应付多种数据类型。看一个例子:上例中, 我们定义了一个类X, 然后我们在类中定义了一个运算翻译 2014-07-26 17:06:04 · 15623 阅读 · 0 评论 -
STL sorting
STL算法中一类重要的算法就是pai翻译 2014-07-27 15:17:46 · 572 阅读 · 0 评论 -
Modifying algorithm
接下来说说STL算法中的Modifying翻译 2014-07-27 13:11:16 · 709 阅读 · 0 评论 -
C++ unordered Associative Containers(C++11)
C++11 引进了无序关联容器(unordered associative containers)的概念。 有unordered set or multiset, 以及unordered map or multimap。顾名思义, unordered的意思就是元素没有固定的顺序, 并且元素的顺序可能会随着时间的变化而变化。 Internally, unordered contai翻译 2014-07-26 14:27:55 · 1605 阅读 · 0 评论 -
Iterators (迭代器)
关于迭代器, 总共有五种:翻译 2014-07-26 15:18:11 · 1932 阅读 · 0 评论 -
STL 学习笔记2
关于STL的几个问题。翻译 2014-07-23 18:14:43 · 540 阅读 · 0 评论 -
STL 学习笔记一
C++ 有一个很重要的库叫做标准库(st)翻译 2014-07-23 16:43:33 · 632 阅读 · 0 评论 -
STL associative containers(关联容器)
首先对于集合和multiset:翻译 2014-07-23 19:04:50 · 1002 阅读 · 0 评论 -
(STL)std::unique函数的实现
源于《挑战程序设计竞赛》第164页程序中调用的函数unique, 今天好好看看。 该函数std::unique位于头文件声明1如下:templateForwardIt unique( ForwardIt first, ForwardIt last );声明2如下:templateForwardIt unique( ForwardIt first, ForwardIt last,原创 2015-03-10 10:17:15 · 2922 阅读 · 5 评论