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

履歴 編集

function template
<algorithm>

std::ranges::sort_heap(C++20)

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
    sort_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>
    sort_heap(R&& r,
              Comp comp = {},
              Proj proj = {}); // (2) C++20
}

概要

ヒープ化された範囲を並べ替える

事前条件

  • [first,last) は有効なヒープである必要がある。

効果

ヒープ化されている [first,last) をソートする

戻り値

last

計算量

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

#include <iostream>
#include <vector>
#include <algorithm>

int main()
{
  std::vector<int> v = {3, 1, 4};
  std::ranges::make_heap(v);

  // ヒープ化された範囲をソート
  std::ranges::sort_heap(v);

  for (int x : v) {
    std::cout << x << std::endl;
  }
}

出力

1
3
4

バージョン

言語

  • C++20

処理系

参照