当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Algorithm is_heap_until()用法及代码示例


C++ 算法 is_heap_until() 函数用于返回一个迭代器,该迭代器指向范围 [first, last) 中第一个不满足堆排序条件的元素,或者如果范围形成一个堆则结束。

使用运算符比较元素

用法

default (1)      template <class RandomAccessIterator>
                          RandomAccessIterator is_heap_until (RandomAccessIterator first,
                                                                                    RandomAccessIterator last);

custom (2)        template <class RandomAccessIterator, class Compare>
                           RandomAccessIterator is_heap_until (RandomAccessIterator first,
                              RandomAccessIterator last Compare comp);

参数

first:一个随机访问迭代器,指向一个范围的第一个元素来检查堆。

last:一个随机访问迭代器,指向范围中过去的最后一个元素以检查堆。

comp: 一个用户定义的二元谓词函数,它接受两个参数,如果两个参数按顺序返回真,否则返回假。它遵循严格的弱排序来对元素进行排序。

返回值

它返回一个迭代器,该迭代器指向范围 [first, last) 中不满足堆排序条件的第一个元素,或者如果范围形成一个堆则结束。

复杂度

复杂性在第一个和最后一个之间的距离上是线性的:比较元素直到发现不匹配。

数据竞争

访问范围 [first, last) 中的对象。

异常

如果元素比较或迭代器上的操作引发异常,则此函数将引发异常。

注意:无效的参数会导致未定义的行为。

例子1

让我们看一个简单的例子来演示 is_heap_until() 的使用:

#include <iostream>     // std::cout
#include <algorithm>    // std::is_heap_until, std::sort, std::reverse
#include <vector>       // std::vector

using namespace std;

int main () {
  vector<int> foo {2,6,9,3,8,4,5,1,7};

  sort(foo.begin(),foo.end());
  reverse(foo.begin(),foo.end());

  auto last = std::is_heap_until (foo.begin(),foo.end());

  cout << "The " << (last-foo.begin()) << " first elements are a valid heap:";
  for (auto it=foo.begin(); it!=last; ++it)
    cout << ' ' << *it;
  cout << '\n';

  return 0;
}

输出:

The 9 first elements are a valid heap:9 8 7 6 5 4 3 2 1

例子2

让我们看另一个简单的例子:

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

using namespace std;

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

  cout << boolalpha;

  cout << "before:is heap? "
            << (is_heap_until(v.begin(), v.end()) == v.end()) << endl;

  make_heap(v.begin(), v.end());
  cout << " after:is heap? "
            << (is_heap_until(v.begin(), v.end()) == v.end()) << endl;
            
    return 0;
}

输出:

before:is heap? false
 after:is heap? true

例子3

让我们看另一个简单的例子:

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

using namespace std;

bool ignore_case(char a, char b) {
   return (tolower(a) == tolower(b));
}

int main(void) {
   vector<char> v = {'E', 'd', 'C', 'b', 'A'};
   auto result = is_heap_until(v.begin(), v.end());

   cout << char(*result) << " is the first element which "
        << "does not satisfy the max heap condition." << endl;

   result = is_heap_until(v.begin(), v.end(), ignore_case);

   if (result == end(v))
      cout << "Entire range is a valid heap." << endl;

   return 0;
}

输出:

d is the first element which does not satisfy the max heap condition.
Entire range is a valid heap.

示例 4

让我们看一个简单的例子:

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

#include<iostream> 
#include<algorithm> // for heap operations 
using namespace std; 
int main() 
{ 
      
    // Initializing a vector 
    vector<int> v1 = {40, 30, 25, 35, 15}; 
      
    // Declaring heap iterator 
    vector<int>::iterator it1; 
      
    // Checking if container is heap 
    // using is_heap() 
    is_heap(v1.begin(), v1.end())? 
    cout << "The container is heap ":
    cout << "The container is not heap"; 
    cout << endl; 
      
    // using is_heap_until() to check position  
    // till which container is heap 
    auto it = is_heap_until(v1.begin(), v1.end()); 
    
    // Displaying heap range elements 
    cout << "The heap elements in container are:"; 
    for (it1=v1.begin(); it1!=it; it1++) 
       cout << *it1 << " "; 
     
    return 0; 
}

输出:

The container is not heap
The heap elements in container are:40 30 25





相关用法


注:本文由纯净天空筛选整理自 C++ Algorithm is_heap_until()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。