欣乐

The eagles are coming!

导航

随笔分类 -  《C++STL开发技术导引》

1 2 下一页

C++STL算法速查
摘要:非变易算法/*第21章 非变易算法 Non-modifying sequence operations 21.0 advance, distance 为了了解模板,先了解一下这两个迭代器操作函数 21.1 逐个容器元素for_each for_each Apply... 阅读全文

posted @ 2014-11-25 12:39 欣乐 阅读(205) 评论(0) 推荐(0)

第24章 数值算法
摘要:第24章 数值算法 24.1 递增赋值iota 24.2 元素求和accumulate 24.3 两序列元素内积inner_product 24.4 部分元素求和partial_sum 24.5 相邻元素求差adjacent_difference 24.6 n次方计算power 24.7 本章小结有... 阅读全文

posted @ 2014-11-25 12:25 欣乐 阅读(229) 评论(0) 推荐(0)

第23章 排序算法(包括merge等)
摘要:第23章 排序算法Sorting:1sortSort elements in range (function template)2stable_sortSort elements preserving order of equivalents (function template)3partial... 阅读全文

posted @ 2014-11-25 10:35 欣乐 阅读(229) 评论(0) 推荐(0)

第22章 变易算法
摘要:第22章 变易算法 Modifying sequence operations 22.1 元素复制copycopy Copy range of elements (function template) 22.2 反向复制copy_backwardcopy_backward Copy range o... 阅读全文

posted @ 2014-11-22 20:24 欣乐 阅读(211) 评论(0) 推荐(0)

第21章 非变易算法
摘要:第21章 非变易算法 Non-modifying sequence operations 21.0 advance, distance 为了了解模板,先了解一下这两个迭代器操作函数 21.1 逐个容器元素for_each for_each Apply function to range (temp... 阅读全文

posted @ 2014-11-21 15:28 欣乐 阅读(246) 评论(0) 推荐(0)

第20章 priority_queue优先队列容器
摘要:/* 第20章 priority_queue优先队列容器 20.1 priority_queue技术原理 20.2 priority_queue应用基础 20.3 本章小结*/// 第20章 priority_queue优先队列容器// 20.1 priority_queue技术... 阅读全文

posted @ 2014-11-20 23:50 欣乐 阅读(156) 评论(0) 推荐(0)

第19章 queue队列容器
摘要:/* 第19章 queue队列容器 19.1 queue技术原理 19.2 queue应用基础 19.3 本章小结*/// 第19章 queue队列容器// 19.1 queue技术原理// 19.2 queue应用基础 ---------------------------... 阅读全文

posted @ 2014-11-20 23:33 欣乐 阅读(125) 评论(0) 推荐(0)

第18章 stack堆栈容器
摘要:/* 第18章 stack堆栈容器 18.1 stack技术原理 18.2 stack应用基础 18.3 本章小结*/// 第18章 stack堆栈容器// 18.1 stack技术原理 ------------// 18.2 stack应用基础 --------------... 阅读全文

posted @ 2014-11-20 23:22 欣乐 阅读(139) 评论(0) 推荐(0)

第17章 string基本字符序列容器
摘要:/* 第17章 string基本字符序列容器 17.1 string技术原理 17.2 string应用基础 17.3 本章小结*/// 第17章 string基本字符序列容器// 17.1 string技术原理 ---------------------------------... 阅读全文

posted @ 2014-11-20 23:06 欣乐 阅读(129) 评论(0) 推荐(0)

第16章 hash_map哈希映照容器
摘要:/* 第16章 hash_map哈希映照容器 16.1 hash_map技术原理 16.2 hash_map应用基础 16.3 本章小结 略*/ 阅读全文

posted @ 2014-11-20 20:50 欣乐 阅读(114) 评论(0) 推荐(0)

第15章 hash_set哈希集合容器
摘要:/* 第15章 hash_set哈希集合容器 15.1 hash_set技术原理 15.2 hash_set应用基础 15.3 本章小结 略*/ 阅读全文

posted @ 2014-11-20 20:46 欣乐 阅读(97) 评论(0) 推荐(0)

第14章 multimap多重映照容器
摘要:/* 第14章 multimap多重映照容器 14.1 multimap技术原理 14.2 multimap应用基础 14.3 本章小结*/// 第14章 multimap多重映照容器// 14.1 multimap技术原理 ---------------------------... 阅读全文

posted @ 2014-11-20 20:40 欣乐 阅读(145) 评论(0) 推荐(0)

第13章 map映照容器
摘要:/* 第13章 map映照容器 13.1 map技术原理 13.2 map应用基础 13.3 本章小结*/// 第13章 map映照容器// 13.1 map技术原理 --------------------------------------------------------... 阅读全文

posted @ 2014-11-20 20:14 欣乐 阅读(108) 评论(0) 推荐(0)

第12章 multiset多重集合容器
摘要:/* 第12章 multiset多重集合容器 12.1 multiset技术原理 12.2 multiset应用基础 12.3 本章小结*/// 第12章 multiset多重集合容器// 12.1 multiset技术原理 ---------------------------... 阅读全文

posted @ 2014-11-20 19:40 欣乐 阅读(137) 评论(0) 推荐(0)

第11章 set集合容器
摘要:/*第11章 set集合容器 11.1 set技术原理 11.2 set应用基础 11.3 本章小结*///第11章 set集合容器// 11.1 set技术原理 ------------------------------------------------------------... 阅读全文

posted @ 2014-11-20 19:14 欣乐 阅读(154) 评论(0) 推荐(0)

第10章 bit_vector位向量容器
摘要:第10章 bit_vector位向量容器 10.1 bit_vector技术原理 10.2 bit_vector应用基础 10.3 本章小结 这本书讲bit_vector,而不讲bitset容器,有点奇怪。 略 阅读全文

posted @ 2014-11-20 18:20 欣乐 阅读(169) 评论(0) 推荐(0)

第9章 slist单向链表容器
摘要:第9章 slist单向链表容器 9.1 slist技术原理 9.2 slist应用基础 9.3 本章小结 略 阅读全文

posted @ 2014-11-20 18:18 欣乐 阅读(114) 评论(0) 推荐(0)

第8章 list双向链表容器
摘要:/*第8章 list双向链表容器 8.1 list技术原理 8.2 list应用基础 8.3 本章小结*///第8章 list双向链表容器// 8.1 list技术原理 ---------------------------------------------------------... 阅读全文

posted @ 2014-11-20 15:27 欣乐 阅读(145) 评论(0) 推荐(0)

第7章 deque双端队列容器
摘要:/* 第7章 deque双端队列容器 7.1 deque技术原理 7.2 deque应用基础 7.3 本章小结*/// 第7章 deque双端队列容器// 7.1 deque技术原理 ------------------------------------------------... 阅读全文

posted @ 2014-11-20 14:02 欣乐 阅读(145) 评论(0) 推荐(0)

第6章 vector向量容器
摘要:/*第三篇 C++STL容器技术 第6章 vector向量容器 6.1 vector技术原理 6.2 vector应用基础 6.3 本章小结*/// 第6章 vector向量容器// 6.1 vector技术原理 ---------------------------------... 阅读全文

posted @ 2014-11-20 12:48 欣乐 阅读(157) 评论(0) 推荐(0)

1 2 下一页