上一页 1 ··· 81 82 83 84 85 86 87 88 89 ··· 97 下一页
摘要: cb27a_c++_STL_算法_最小值和最大值min_element(b,e) b--begin(), e--end()min_element(b,e,op). op:函数,函数对象,一元谓词。max_element(b,e)max_element(b,e,op) bool absLess(int 阅读全文
posted @ 2020-02-19 13:27 txwtech 阅读(283) 评论(0) 推荐(0) 编辑
摘要: cb26a_c++_STL_算法_元素计数所有容器都可以使用countcount_if关联容器的等效成员函数,容器自己的成员函数速度较快1.set.count2.multiset.count3.map.count4.multimap.count error C2275: “std::greater< 阅读全文
posted @ 2020-02-19 11:24 txwtech 阅读(200) 评论(0) 推荐(0) 编辑
摘要: cb25a_c++_函数对象简介预定义的函数对象https://blog.csdn.net/txwtech/article/details/104382505negate<type>()plus<type>()minus<type>()multilies<type>()divides<type>() 阅读全文
posted @ 2020-02-18 21:31 txwtech 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 算法概述 算法部分主要由头文件<algorithm>,<numeric>和<functional>组成。 <algorithm>是所有STL头文件中最大的一个,其中常用到的功能范围涉及到比较、 交换、查找、遍历操作、复制、修改、反转、排序、合并等等。 <numeric>体积很小,只包括几个在序列上面 阅读全文
posted @ 2020-02-18 16:41 txwtech 阅读(200) 评论(0) 推荐(0) 编辑
摘要: cb23a_c++_标准模板库STL_set_multiset_关联容器 set(集)数据不能重复、multiset(多集)可以重复。操作数据速度快,数据自动排序。红黑树(数据结构)红黑树-二叉树基本操作insert: 插入时比vector稍慢count和finderase: 注意:不能通过find 阅读全文
posted @ 2020-02-18 16:19 txwtech 阅读(146) 评论(0) 推荐(0) 编辑
摘要: map,字符串映射字符串,vs2019测试 void CMFCApplication1Dlg::OnBnClickedButton1() { // TODO: 在此添加控件通知处理程序代码 std::map<CString, CString> map_str; map_str.insert(std: 阅读全文
posted @ 2020-02-18 10:54 txwtech 阅读(312) 评论(0) 推荐(0) 编辑
摘要: *cb21a_c++_string对象的比较s.compare(s2)--区分大小的s.compare(pos1,n1,s2)s.compare(pos1,n1,s2,pos2,n2)s.compare(cp)s.compare(pos1,n1,cp)s.compare(pos1,n1,cp,n2) 阅读全文
posted @ 2020-02-17 21:26 txwtech 阅读(244) 评论(0) 推荐(0) 编辑
摘要: cb20a_c++_string类型的查找s.find(args) //精确匹配,顺序查找, abc, 连续的包含在abcde,或者fabcde;s.rfind(args) //精确匹配。反向查找s.find_first_of(args)//不连续,间隔的,一个一个的找,比如扎到a就返回位置。s.f 阅读全文
posted @ 2020-02-17 21:06 txwtech 阅读(163) 评论(0) 推荐(0) 编辑
摘要: *cb19a_c++_只适合string类型的操作_提取_追加_替换三个substr重载函数-获取一个字符串的一部分六个append重载函数-追加字符十个replace重载函数-替换更换 重载函数越多,使用起来越灵活 欢迎讨论,相互学习。 txwtech@163.com 1 /*cb19a_c++_ 阅读全文
posted @ 2020-02-17 17:02 txwtech 阅读(153) 评论(0) 推荐(0) 编辑
摘要: cb18a_c++_修改string对象的方法s.insert(p,t)s.insert(p, 'A'); //迭代器前插入As.insert<p,n,t)s.insert(p, 3, 'B');//迭代器p前插入3个Bs.insert(p,b,e)string::iterator b = s2.b 阅读全文
posted @ 2020-02-17 16:09 txwtech 阅读(286) 评论(0) 推荐(0) 编辑
上一页 1 ··· 81 82 83 84 85 86 87 88 89 ··· 97 下一页