123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- //===----------------------------------------------------------------------===//
- //
- // The LLVM Compiler Infrastructure
- //
- // This file is distributed under the University of Illinois Open Source
- // License. See LICENSE.TXT for details.
- //
- //===----------------------------------------------------------------------===//
- // <algorithm>
- // template<ForwardIterator Iter>
- // requires LessThanComparable<Iter::value_type>
- // Iter
- // min_element(Iter first, Iter last);
- #include <algorithm>
- #include <cassert>
- #include "../../iterators.h"
- template <class Iter>
- void
- test(Iter first, Iter last)
- {
- Iter i = std::min_element(first, last);
- if (first != last)
- {
- for (Iter j = first; j != last; ++j)
- assert(!(*j < *i));
- }
- else
- assert(i == last);
- }
- template <class Iter>
- void
- test(unsigned N)
- {
- int* a = new int[N];
- for (int i = 0; i < N; ++i)
- a[i] = i;
- std::random_shuffle(a, a+N);
- test(Iter(a), Iter(a+N));
- delete [] a;
- }
- template <class Iter>
- void
- test()
- {
- test<Iter>(0);
- test<Iter>(1);
- test<Iter>(2);
- test<Iter>(3);
- test<Iter>(10);
- test<Iter>(1000);
- }
- int main()
- {
- test<forward_iterator<const int*> >();
- test<bidirectional_iterator<const int*> >();
- test<random_access_iterator<const int*> >();
- test<const int*>();
- }
|