//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template Compare> // requires ShuffleIterator && CopyConstructible // void // make_heap(Iter first, Iter last, Compare comp); #include #include #include #include "counting_predicates.hpp" #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES #include struct indirect_less { template bool operator()(const P& x, const P& y) {return *x < *y;} }; #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES void test(unsigned N) { int* ia = new int [N]; { for (int i = 0; i < N; ++i) ia[i] = i; std::random_shuffle(ia, ia+N); std::make_heap(ia, ia+N, std::greater()); assert(std::is_heap(ia, ia+N, std::greater())); } // Ascending { binary_counting_predicate, int, int> pred ((std::greater())); for (int i = 0; i < N; ++i) ia[i] = i; std::make_heap(ia, ia+N, std::ref(pred)); assert(pred.count() <= 3*N); assert(std::is_heap(ia, ia+N, pred)); } // Descending { binary_counting_predicate, int, int> pred ((std::greater())); for (int i = 0; i < N; ++i) ia[N-1-i] = i; std::make_heap(ia, ia+N, std::ref(pred)); assert(pred.count() <= 3*N); assert(std::is_heap(ia, ia+N, pred)); } // Random { binary_counting_predicate, int, int> pred ((std::greater())); std::random_shuffle(ia, ia+N); std::make_heap(ia, ia+N, std::ref(pred)); assert(pred.count() <= 3*N); assert(std::is_heap(ia, ia+N, pred)); } delete [] ia; } int main() { test(0); test(1); test(2); test(3); test(10); test(1000); test(10000); test(100000); #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES { const int N = 1000; std::unique_ptr* ia = new std::unique_ptr [N]; for (int i = 0; i < N; ++i) ia[i].reset(new int(i)); std::random_shuffle(ia, ia+N); std::make_heap(ia, ia+N, indirect_less()); assert(std::is_heap(ia, ia+N, indirect_less())); delete [] ia; } #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES }