| //===----------------------------------------------------------------------===// |
| // |
| // 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. |
| // |
| //===----------------------------------------------------------------------===// |
| |
| // <algorithm> |
| |
| // template<BidirectionalIterator Iter, StrictWeakOrder<auto, Iter::value_type> Compare> |
| // requires ShuffleIterator<Iter> |
| // && CopyConstructible<Compare> |
| // bool |
| // prev_permutation(Iter first, Iter last, Compare comp); |
| |
| #include <algorithm> |
| #include <functional> |
| #include <cassert> |
| |
| #include "test_iterators.h" |
| |
| #include <cstdio> |
| |
| int factorial(int x) |
| { |
| int r = 1; |
| for (; x; --x) |
| r *= x; |
| return r; |
| } |
| |
| template <class Iter> |
| void |
| test() |
| { |
| typedef std::greater<int> C; |
| int ia[] = {1, 2, 3, 4, 5, 6}; |
| const int sa = sizeof(ia)/sizeof(ia[0]); |
| int prev[sa]; |
| for (int e = 0; e <= sa; ++e) |
| { |
| int count = 0; |
| bool x; |
| do |
| { |
| std::copy(ia, ia+e, prev); |
| x = std::prev_permutation(Iter(ia), Iter(ia+e), C()); |
| if (e > 1) |
| { |
| if (x) |
| assert(std::lexicographical_compare(ia, ia+e, prev, prev+e, C())); |
| else |
| assert(std::lexicographical_compare(prev, prev+e, ia, ia+e, C())); |
| } |
| ++count; |
| } while (x); |
| assert(count == factorial(e)); |
| } |
| } |
| |
| int main() |
| { |
| test<bidirectional_iterator<int*> >(); |
| test<random_access_iterator<int*> >(); |
| test<int*>(); |
| } |