
STL
kgduu
这个作者很懒,什么都没留下…
展开
-
std::string a, b; a = a + b; a += b的区别
a = a + b用的是非成员函数template <class _CharT, class _Traits, class _Alloc>inline basic_string<_CharT,_Traits,_Alloc>operator+(const basic_string<_CharT,_Traits,_Alloc>& __x, const basic_string<_CharT,_Traits,_Alloc>&am原创 2022-04-06 22:08:08 · 586 阅读 · 0 评论 -
cout的格式化
1、格式化标识类型定义为ios_base::fmtflags_Ios_Fmtflags检举值有符号 值 _S_boolalpha 1L << 0 _S_dec 1L << 1 _S_fixed 1L << 2 _S_hex 1L << 3 _S_internal 1L << 4 _S_left 1L << 5 _S_oct 1L << 6原创 2021-09-01 21:11:04 · 542 阅读 · 0 评论 -
hdu1716 排列2(排列生成算法)
Problem DescriptionRay又对数字的列产生了兴趣:现有四张卡片,用这四张卡片能排列出很多不同的4位数,要求按从小到大的顺序输出这些4位数。 Input每组数据占一行,代表四张卡片上的数字(0 Output对每组卡片按从小到大的顺序输出所有能由这四张卡片组成的4位数,千位数字相同的在同一行,同一行中每个四位数间用空格分隔。原创 2015-05-25 23:31:52 · 917 阅读 · 0 评论 -
map作为const引用的问题
string generateCover(const vector& v, const map& id_image){ string cover; for (size_t i = 0; i < v.size(); i++) { if (id_image.count(v[i])) { cover.append(id_image[v[i]]); } if (i !原创 2015-11-07 17:20:34 · 4786 阅读 · 0 评论 -
stl中的list学习笔记
list的数据结构本质是双向循环链表,链表中包含一个头结点其类继承关系为_List_alloc_base类主要是分配头结点及真实的数据结点作用_List_base类初始化头结点原创 2015-11-14 14:28:25 · 484 阅读 · 0 评论 -
list在codeblocks和vs2013中编译提示不同
代码如下:#include #include using namespace std;int main(void){ list l; for (int i = 0; i < 4; i++) { l.push_back(i); } list::iterator it = l.begin(); it--; return 0;}在codeblocks下编译原创 2015-11-14 20:21:03 · 1018 阅读 · 0 评论 -
string的find和find_first_of的区别
今天遇到个bug,原来是在查找子串时调用了find_first_of,导致字符串替换出现问题。现将find和find_first_of的几种形式及原创 2015-11-19 22:18:58 · 3587 阅读 · 0 评论 -
C++ 中的模板类声明头文件和实现文件分离后,如何能实现正常编译?
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。作者:余天升链接:http://www.zhihu.com/question/20630104/answer/15722407来源:知乎谢@欲三更 邀,这个问题让我想起我在实习的时候犯的一个错误,就是把模版类的定义和实现分开写了,结果编译出错,查了两天才查出问题。C++中每一个对象所占用的空间大小,转载 2016-02-28 17:08:07 · 1526 阅读 · 0 评论 -
UVa12049 - Just Prune The List
You are given two list of integers. You can remove any number of elements from any of them. You have to ensure that after removing some elements both of the list will contain same elements, but not ne原创 2014-09-11 22:35:24 · 823 阅读 · 0 评论 -
UVa12614 - Earn For Future
In a lazy afternoon the great Froogrammer came to realize that, to make his future plans successful he needs a lot of money. To make some quick cash he decided to go to the casino to play a game. The原创 2014-09-11 21:57:38 · 626 阅读 · 0 评论 -
UVa11553 - Grid Game
Alice and Bob both have lots of candies but want more. They decide to play the following turn-based game.They fill an n x n grid M with random integers. Alice begins the game by crossing off an原创 2014-09-11 21:09:44 · 798 阅读 · 0 评论 -
stable_partition
调用__stable_partition_aux:template inline _ForwardIter__stable_partition_aux(_ForwardIter __first, _ForwardIter __last, _Predicate __pred, _Tp*, _Distance*){ _Temporary原创 2013-04-08 15:20:28 · 972 阅读 · 0 评论 -
stl的set,multiset, map, multimap, deque, list, stack, queue, priority_queue
set实际上是平衡二叉树,需要声明头文件#includeInsert:将元素插入集合中使用前向迭代器对集合中序遍历使用反向迭代器reverse_iterator可以反向遍历集合,需要用到rbegin()和rend()方法。erase:删除的对象可以是某个迭代器位置上的元素、等于某键值的元素、一个区间上的元素和清空集合(clear)。find:对集合进行搜索,如果找到查找的键值,原创 2012-03-15 22:40:44 · 1464 阅读 · 0 评论 -
STL中的sort
sort用的是introsort和插入排序:template inline void sort(_RandomAccessIter __first, _RandomAccessIter __last) { __STL_REQUIRES(_RandomAccessIter, _Mutable_RandomAccessIterator); __STL_REQUIRES(typename原创 2013-04-09 09:28:08 · 817 阅读 · 0 评论 -
stl的nth_element
/*************************************************在区间[first,last)之间的数,第n大的数放在nth位置,比nth小的数放在之前,大的数放在其后但是不保证有序*************************************************/template void __nth_element(_Random原创 2013-04-09 11:05:17 · 863 阅读 · 0 评论 -
stl中有序结构的操作
includes:template bool includes(InputIterator1 first1, InputIterator1 last1,InputIterator2 first2, InputIterator2 last2);template <class InputIterator1, class InputIterator2,class Compare>bool原创 2013-04-09 13:46:48 · 1158 阅读 · 0 评论 -
stl中的堆操作
pop_heap:template void pop_heap(RandomAccessIterator first,RandomAccessIterator last);template void pop_heap(RandomAccessIterator first,RandomAccessIterator last,Compare comp);push_heap:te原创 2013-04-09 14:38:15 · 899 阅读 · 0 评论 -
stl的complex(二)
cin.ignore(int size, int delim)是读取,然后删掉,直到碰到delim字符cin.peek()是获取输入流的第一个字符,但是pos没有移动#include #include #include #include #include using namespace std;int main(){ complex c1, c2; while原创 2014-03-16 22:27:04 · 906 阅读 · 0 评论 -
stl中的complex
#include #include using namespace std;int main(){ #ifndef ONLINE_JUDGE //freopen("d:\\OJ\\uva_in.txt", "r", stdin); #endif // ONLINE_JUDGE complex c1(4.0, 3.0); complex c2(原创 2014-03-16 22:04:52 · 1829 阅读 · 0 评论 -
stl中的unique
其先调用adjacent_find,然后用unique_copy __first = adjacent_find(__first, __last); return unique_copy(__first, __last, __first);原创 2013-04-08 15:00:25 · 814 阅读 · 0 评论