stl
文章平均质量分 67
__Rain
这个作者很懒,什么都没留下…
展开
-
ABC 241 D(multiset 模拟
D - Sequence Query思路:multisetmultisetmultiset 模拟假设里边元素为 3,43, 43,4auto it = se.lower_bound(4);cout << *it << endl;// 输出 4--it;cout << *it << endl;// 输出 3--it;cout << *it << endl;// 输出 3--it;cout << *it &原创 2022-04-04 13:40:46 · 211 阅读 · 0 评论 -
牛客竞赛语法入门班数组栈、队列和stl习题
牛客竞赛语法入门班数组栈、队列和stl习题L 指纹锁set ,自带排序功能可重写排序函数 cmp,注意外边写的要写成 operator()operator()operator(),结构体内部的排序写成 operator<operator<operator<代码中的排序函数这么理解:假设 k=3k=3k=3,初始为空,插入一个 222,如果我们再插入一个 333,输出发现 setsetset 里边并没有 333,这时只有与 222 绝对值大于 333 的才能插入。加入这个自定义原创 2021-09-07 20:57:46 · 284 阅读 · 2 评论 -
C++ STL
一stoi():将字符串转换为整型(int)stoll():将字符串转换为long longstof():将字符串转换为float型stod():将字符串转换为double型原创 2021-04-12 17:51:15 · 222 阅读 · 0 评论