摘要: 转自:https://blog.csdn.net/adaptiver/article/details/52925792 1.介绍 vector+sort 实际是快排,快速排序是目前已知的所有排序算法中最快的排序算法。例子: #include <vector> #include <set> #incl 阅读全文
posted @ 2024-01-14 13:51 lypbendlf 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 转自:chatgpt 1.介绍 std::for_each 是 C++ 标准库中的一个算法,用于对指定范围内的元素执行指定的操作。它的一般形式如下: template <class InputIt, class UnaryFunction> UnaryFunction for_each(InputI 阅读全文
posted @ 2024-01-14 13:16 lypbendlf 阅读(754) 评论(0) 推荐(0) 编辑