• C++11标准模板(STL)- 算法(std::merge)


    定义于头文件 

    算法库提供大量用途的函数(例如查找、排序、计数、操作),它们在元素范围上操作。注意范围定义为 [first, last) ,其中 last 指代要查询或修改的最后元素的后一个元素。

    归并两个已排序的范围

    std::merge
    template< class InputIt1, class InputIt2, class OutputIt >

    OutputIt merge( InputIt1 first1, InputIt1 last1,
                    InputIt2 first2, InputIt2 last2,

                    OutputIt d_first );
    (1)(C++20 前)
    template< class InputIt1, class InputIt2, class OutputIt >

    constexpr OutputIt merge( InputIt1 first1, InputIt1 last1,
                              InputIt2 first2, InputIt2 last2,

                              OutputIt d_first );
    (C++20 起)
    template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, class ForwardIt3 >

    ForwardIt3 merge( ExecutionPolicy&& policy,
                      ForwardIt1 first1, ForwardIt1 last1,
                      ForwardIt2 first2, ForwardIt2 last2,

                      ForwardIt3 d_first );
    (2)(C++17 起)
    template< class InputIt1, class InputIt2, class OutputIt, class Compare>

    OutputIt merge( InputIt1 first1, InputIt1 last1,
                    InputIt2 first2, InputIt2 last2,

                    OutputIt d_first, Compare comp );
    (3)(C++20 前)
    template< class InputIt1, class InputIt2, class OutputIt, class Compare>

    constexpr OutputIt merge( InputIt1 first1, InputIt1 last1,
                              InputIt2 first2, InputIt2 last2,

                              OutputIt d_first, Compare comp );
    (C++20 起)
    template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, class ForwardIt3, class Compare>

    ForwardIt3 merge( ExecutionPolicy&& policy,
                      ForwardIt1 first1, ForwardIt1 last1,
                      ForwardIt2 first2, ForwardIt2 last2,

                      ForwardIt3 d_first, Compare comp );
    (4)(C++17 起)

    归并二个已排序范围 [first1, last1)[first2, last2) 到始于 d_first 的一个已排序范围中。

    1) 用 operator< 比较元素。

    3) 用给定的二元比较函数 comp 比较元素。

    2,4) 同 (1,3) ,但按照 policy 执行。这些重载仅若 std::is_execution_policy_v> 为 true 才参与重载决议。

    对于元范围中的等价元素,来自第一范围的元素(保持其原顺序)先于来自第二范围的元素(保持其原顺序)。

    若目标范围与输入范围之一重叠,则行为未定义(输入范围可相互重叠)。

    参数

    first1, last1-要归并的元素的第一范围
    first2, last2-要归并到元素的第二范围
    d_first-目标范围的起始
    policy-所用的执行策略。细节见执行策略。
    comp-比较函数对象(即满足比较 (Compare) 概念的对象),若第一参数小于(即序于)第二参数则返回 ​true 。

    比较函数的签名应等价于如下:

     bool cmp(const Type1 &a, const Type2 &b);

    虽然签名不必有 const & ,函数也不能修改传递给它的对象,而且必须接受(可为 const 的)类型 Type1Type2 的值,无关乎值类别(从而不允许 Type1 & ,亦不允许 Type1 ,除非 Type1 的移动等价于复制 (C++11 起))。
    类型 Type1 与 Type2 必须使得 InputIt1 与 InputIt2 类型的对象在解引用后能隐式转换到 Type1 与 Type2 两者。 ​

    类型要求
    - InputIt1, InputIt2 必须满足遗留输入迭代器 (LegacyInputIterator) 的要求。
    - ForwardIt1, ForwardIt2, ForwardIt3 必须满足遗留向前迭代器 (LegacyForwardIterator) 的要求。
    - OutputIt 必须满足遗留输出迭代器 (LegacyOutputIterator) 的要求。

    返回值

    指向最后复制元素后一元素的迭代器。

    复杂度

    1,3) 至多 std::distance(first1, last1) + std::distance(first2, last2) - 1 次比较。

    2,4) O(std::distance(first1, last1) + std::distance(first2, last2)) 。

    异常

    拥有名为 ExecutionPolicy 的模板形参的重载按下列方式报告错误:

    • 若作为算法一部分调用的函数的执行抛出异常,且 ExecutionPolicy 为标准策略之一,则调用 std::terminate 。对于任何其他 ExecutionPolicy ,行为是实现定义的。
    • 若算法无法分配内存,则抛出 std::bad_alloc 。

    注意

    此算法进行类似 std::set_union 所做的任务。都消耗二个已排序输入范围,并产生拥有来自两个输入的元素的输出。此二算法的区别在于处理来自二个输入的比较等价(见可小于比较 (LessThanComparable) 上的注意)的值。若任何等价的值在第一范围出现 n 次,在第二范围出现 m 次,则 std::merge 会输出所有 n+m 次出现,而 std::set_union 将只输出 std::max(n, m) 次。故 std::merge 准确输出 std::distance(first1, last1) + std::distance(first2, last2) 个值,而 std::set_union 可能产生得更少。

    可能的实现

    版本一

    1. template<class InputIt1, class InputIt2, class OutputIt>
    2. OutputIt merge(InputIt1 first1, InputIt1 last1,
    3. InputIt2 first2, InputIt2 last2,
    4. OutputIt d_first)
    5. {
    6. for (; first1 != last1; ++d_first) {
    7. if (first2 == last2) {
    8. return std::copy(first1, last1, d_first);
    9. }
    10. if (*first2 < *first1) {
    11. *d_first = *first2;
    12. ++first2;
    13. } else {
    14. *d_first = *first1;
    15. ++first1;
    16. }
    17. }
    18. return std::copy(first2, last2, d_first);
    19. }

     版本二

    1. template<class InputIt1, class InputIt2,
    2. class OutputIt, class Compare>
    3. OutputIt merge(InputIt1 first1, InputIt1 last1,
    4. InputIt2 first2, InputIt2 last2,
    5. OutputIt d_first, Compare comp)
    6. {
    7. for (; first1 != last1; ++d_first) {
    8. if (first2 == last2) {
    9. return std::copy(first1, last1, d_first);
    10. }
    11. if (comp(*first2, *first1)) {
    12. *d_first = *first2;
    13. ++first2;
    14. } else {
    15. *d_first = *first1;
    16. ++first1;
    17. }
    18. }
    19. return std::copy(first2, last2, d_first);
    20. }

    调用示例

    1. #include <iostream>
    2. #include <algorithm>
    3. #include <functional>
    4. #include <vector>
    5. #include <iterator>
    6. #include <time.h>
    7. using namespace std;
    8. struct Cell
    9. {
    10. int x;
    11. int y;
    12. Cell &operator +=(const Cell &cell)
    13. {
    14. x += cell.x;
    15. y += cell.y;
    16. return *this;
    17. }
    18. bool operator <(const Cell &cell) const
    19. {
    20. if (x == cell.x)
    21. {
    22. return y < cell.y;
    23. }
    24. else
    25. {
    26. return x < cell.x;
    27. }
    28. }
    29. };
    30. std::ostream &operator<<(std::ostream &os, const Cell &cell)
    31. {
    32. os << "{" << cell.x << "," << cell.y << "}";
    33. return os;
    34. }
    35. int main()
    36. {
    37. srand((unsigned)time(NULL));;
    38. std::cout.setf(std::ios_base::boolalpha);
    39. auto func1 = []()
    40. {
    41. int n = std::rand() % 10 + 100;
    42. Cell cell{n, n};
    43. return cell;
    44. };
    45. vector<Cell> cells1(5);
    46. std::generate(cells1.begin(), cells1.end(), func1);
    47. std::stable_sort(cells1.begin(), cells1.end());
    48. std::cout << "cells 1 : ";
    49. std::copy(cells1.begin(), cells1.end(), std::ostream_iterator<Cell>(std::cout, " "));
    50. std::cout << std::endl;
    51. vector<Cell> cells2(5);
    52. std::generate(cells2.begin(), cells2.end(), func1);
    53. std::stable_sort(cells2.begin(), cells2.end());
    54. std::cout << "cells 2 : ";
    55. std::copy(cells2.begin(), cells2.end(), std::ostream_iterator<Cell>(std::cout, " "));
    56. std::cout << std::endl;
    57. vector<Cell> cells3(cells1.size() + cells2.size());
    58. std::merge(cells1.begin(), cells1.end(), cells2.begin(), cells2.end(), cells3.begin());
    59. std::cout << "cells 3 : ";
    60. std::copy(cells3.begin(), cells3.end(), std::ostream_iterator<Cell>(std::cout, " "));
    61. std::cout << std::endl;
    62. std::cout << std::endl;
    63. auto is_sortf = [](const Cell & a, const Cell & b)
    64. {
    65. if (a.x == b.x)
    66. {
    67. return a.y > b.y;
    68. }
    69. return a.x > b.x;
    70. };
    71. vector<Cell> cells4(5);
    72. std::generate(cells4.begin(), cells4.end(), func1);
    73. std::stable_sort(cells4.begin(), cells4.end(), is_sortf);
    74. std::cout << "cells 4 : ";
    75. std::copy(cells4.begin(), cells4.end(), std::ostream_iterator<Cell>(std::cout, " "));
    76. std::cout << std::endl;
    77. vector<Cell> cells5(5);
    78. std::generate(cells5.begin(), cells5.end(), func1);
    79. std::stable_sort(cells5.begin(), cells5.end(), is_sortf);
    80. std::cout << "cells 5 : ";
    81. std::copy(cells5.begin(), cells5.end(), std::ostream_iterator<Cell>(std::cout, " "));
    82. std::cout << std::endl;
    83. vector<Cell> cells6;
    84. std::merge(cells4.begin(), cells4.end(), cells5.begin(), cells5.end(), std::back_inserter(cells6), is_sortf);
    85. std::cout << "cells 6 : ";
    86. std::copy(cells6.begin(), cells6.end(), std::ostream_iterator<Cell>(std::cout, " "));
    87. std::cout << std::endl;
    88. std::cout << std::endl;
    89. return 0;
    90. }

    输出

  • 相关阅读:
    基于.Net CEF 实现 Vue 等前端技术栈构建 Windows 窗体应用
    【Hack The Box】windows练习-- Bankrobber
    2022年9月电子学会Python等级考试试卷(三级)答案解析
    C++基础——结构体
    【中国知名企业高管团队】系列49:VIVO
    上午面了个腾讯拿 38K 出来的,让我见识到了基础的天花板
    0110闭区间上连续函数的性质-函数与极限-高等数学
    脆而不倒谷草兼用脆秆水稻被发掘 国稻种芯百团计划行动
    41-MybatisPlus
    用Jmeter进行压测详解
  • 原文地址:https://blog.csdn.net/qq_40788199/article/details/128045368