• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

    最終更新日時(UTC):
    が更新

    履歴 編集

    function template
    <algorithm>

    std::ranges::make_heap

    namespace std::ranges {
      template <random_access_iterator I,
                sentinel_for<I> S,
                class Comp = ranges::less,
                class Proj = identity>
        requires sortable<I, Comp, Proj>
      constexpr I
        make_heap(I first,
                  S last,
                  Comp comp = {},
                  Proj proj = {}); // (1) C++20
    
      template <random_access_range R,
                class Comp = ranges::less,
                class Proj = identity>
        requires sortable<iterator_t<R>, Comp, Proj>
      constexpr borrowed_iterator_t<R>
        make_heap(R&& r,
                  Comp comp = {},
                  Proj proj = {}); // (2) C++20
    }
    

    概要

    範囲をヒープ化する。

    効果

    [first,last) の範囲で heap を構築する

    戻り値

    last

    計算量

    最大で 3 * (last - first) 回比較する

    #include <iostream>
    #include <vector>
    #include <algorithm>
    
    int main()
    {
      std::vector<int> v = {3, 1, 4};
    
      // ヒープ化する
      std::ranges::make_heap(v);
    
      for (int x : v) {
        std::cout << x << std::endl;
      }
    }
    

    出力

    4
    1
    3
    

    バージョン

    言語

    • C++20

    処理系

    参照