Merge -r 127928:132243 from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / partial_sort / 2.cc
blobb60a03e7fddc5941ada35d90a2a44fd5ce8ecfb3
1 // Copyright (C) 2001 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 2, or (at your option)
7 // any later version.
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING. If not, write to the Free
16 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
17 // USA.
19 // 25.3.1 algorithms, sort()
21 #include <algorithm>
22 #include <testsuite_hooks.h>
24 bool test __attribute__((unused)) = true;
26 const int A[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20};
27 const int B[] = {10, 20, 1, 11, 2, 12, 3, 13, 4, 14, 5, 15, 6, 16, 7, 17, 8, 18, 9, 19};
28 const int C[] = {20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1};
29 const int N = sizeof(A) / sizeof(int);
30 const int logN = 3; // ln(N) rounded up
31 const int P = 7;
33 // comparison predicate for stable_sort: order by rightmost digit
34 struct CompLast
36 bool
37 operator()(const int x, const int y)
38 { return x % 10 < y % 10; }
41 // This functor has the equivalent functionality of std::geater<>,
42 // but there is no dependency on <functional> and it also tracks the
43 // number of invocations since creation.
44 class Gt
46 public:
47 static int count() { return itsCount; }
48 static void reset() { itsCount = 0; }
50 bool
51 operator()(const int& x, const int& y)
53 ++itsCount;
54 return x > y;
57 private:
58 static int itsCount;
61 int Gt::itsCount = 0;
63 // 25.3.1.3 partial_sort()
64 void
65 test03()
67 int s1[N];
68 std::copy(B, B + N, s1);
69 VERIFY(std::equal(s1, s1 + N, B));
71 std::partial_sort(s1, s1 + P, s1 + N);
72 VERIFY(std::equal(s1, s1 + P, A));
74 Gt gt;
75 gt.reset();
76 std::partial_sort(s1, s1 + P, s1 + N, gt);
77 VERIFY(std::equal(s1, s1 + P, C));
80 int
81 main()
83 test03();
84 return 0;