• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    function template
    <algorithm>

    std::ranges::push_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
        push_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>
        push_heap(R&& r,
                  Comp comp = {},
                  Proj proj = {}); // (2) C++20
    }
    

    概要

    ヒープ化された範囲に要素を追加する

    事前条件

    • [first,last - 1) は有効な heap である必要がある。

    効果

    last - 1 の値を、[first,last) が有効な heap となるように配置する

    戻り値

    last

    計算量

    最大で log(last - first) 回比較する。

    #include <iostream>
    #include <vector>
    #include <algorithm>
    
    int main()
    {
      std::vector<int> v = {3, 1, 4};
    
      std::ranges::make_heap(v);
    
      // 要素を追加してヒープ化
      v.push_back(2);
      std::ranges::push_heap(v);
    
      std::ranges::sort_heap(v);
    
      for (int x : v) {
        std::cout << x << std::endl;
      }
    }
    

    出力

    1
    2
    3
    4
    

    バージョン

    言語

    • C++20

    処理系

    参照