上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 61 下一页
摘要: max_element返回的是迭代器 max返回的是引用 阅读全文
posted @ 2021-09-02 16:36 MoonXu 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 10 10 10 20 20 20 30 30val=20 lower_bound at position 3 //返回大于等于value的第一个 upper_bound at position 6 //返回大于value的第一个 阅读全文
posted @ 2021-09-02 16:28 MoonXu 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 功能:返回已排序的前n个元素的后一个迭代器 partial_sort 部分排序,middle前面的,不包括middle。按升序排序或自定义 阅读全文
posted @ 2021-09-02 15:39 MoonXu 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 功能:返回当前排列的前一个排列 4 3 2 1 4 3 1 2 4 2 3 1 4 2 1 3 阅读全文
posted @ 2021-09-02 15:30 MoonXu 阅读(10) 评论(0) 推荐(0) 编辑
摘要: template <class BidirectionalIterator, class UnaryPredicate> BidirectionalIterator partition (BidirectionalIterator first, BidirectionalIterator last, 阅读全文
posted @ 2021-09-02 14:56 MoonXu 阅读(19) 评论(0) 推荐(0) 编辑
摘要: make_heap make_heap()用于把一个可迭代容器变成一个堆,默认是大顶堆 第三个参数默认情况下为less<>(),less<int>()用于生成大顶堆。 greater<>()用于生成小顶堆 头文件#include <functional> #include<iostream>#inc 阅读全文
posted @ 2021-09-01 17:56 MoonXu 阅读(46) 评论(0) 推荐(0) 编辑
摘要: template <class InputIterator, class UnaryPredicate> bool all_of (InputIterator first, InputIterator last, UnaryPredicate pred); template<class InputI 阅读全文
posted @ 2021-08-30 11:37 MoonXu 阅读(25) 评论(0) 推荐(0) 编辑
摘要: https://gcc.gnu.org/wiki/cxx-modules hello.cc module; #include <iostream> #include <string_view> export module hello; export void greeter (std::string 阅读全文
posted @ 2021-08-13 14:24 MoonXu 阅读(205) 评论(0) 推荐(0) 编辑
摘要: LD_LIBRARY_PATH以冒号结尾,GCC不赞成该冒号。 还应确保C_INCLUDE_PATH不以冒号结尾,以避免出现相关问题。 方法如下: 方法一: 重新export LIBRARY_PATH和C_INCLUDE_PATH 尾部不含冒号 方法二: export LIBRARY_PATH=$( 阅读全文
posted @ 2021-08-12 13:37 MoonXu 阅读(2034) 评论(0) 推荐(0) 编辑
摘要: 仅对当前用户生效:shell:startup 对所有用户生效:shell:common startup 阅读全文
posted @ 2021-08-11 18:54 MoonXu 阅读(238) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 61 下一页