]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/25_algorithms/stable_sort/2.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / stable_sort / 2.cc
CommitLineData
a5544970 1// Copyright (C) 2001-2019 Free Software Foundation, Inc.
02d92e3b
SW
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
748086b7 6// Free Software Foundation; either version 3, or (at your option)
02d92e3b
SW
7// any later version.
8
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.
13
14// You should have received a copy of the GNU General Public License along
748086b7
JJ
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
02d92e3b
SW
17
18// 25.3.1 algorithms, sort()
19
20#include <algorithm>
fe413112 21#include <testsuite_hooks.h>
02d92e3b 22
02d92e3b
SW
23const int A[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20};
24const int B[] = {10, 20, 1, 11, 2, 12, 3, 13, 4, 14, 5, 15, 6, 16, 7, 17, 8, 18, 9, 19};
25const int C[] = {20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1};
26const int N = sizeof(A) / sizeof(int);
27const int logN = 3; // ln(N) rounded up
28const int P = 7;
29
30// comparison predicate for stable_sort: order by rightmost digit
31struct CompLast
32{
0098d806
BK
33 bool
34 operator()(const int x, const int y)
35 { return x % 10 < y % 10; }
02d92e3b
SW
36};
37
38// This functor has the equivalent functionality of std::geater<>,
39// but there is no dependency on <functional> and it also tracks the
40// number of invocations since creation.
41class Gt
42{
43public:
0098d806
BK
44 static int count() { return itsCount; }
45 static void reset() { itsCount = 0; }
46
47 bool
48 operator()(const int& x, const int& y)
49 {
50 ++itsCount;
51 return x > y;
52 }
02d92e3b
SW
53
54private:
55 static int itsCount;
56};
57
58int Gt::itsCount = 0;
59
02d92e3b
SW
60// 25.3.1.2 stable_sort()
61void
62test02()
63{
64 int s1[N];
65 std::copy(A, A + N, s1);
66 VERIFY(std::equal(s1, s1 + N, A));
67
68 std::stable_sort(s1, s1 + N, CompLast());
69 VERIFY(std::equal(s1, s1 + N, B));
70
71 std::stable_sort(s1, s1 + N);
72 VERIFY(std::equal(s1, s1 + N, A));
73
74 Gt gt;
75 gt.reset();
76 std::stable_sort(s1, s1 + N, gt);
77 VERIFY(std::equal(s1, s1 + N, C));
78 VERIFY(gt.count() <= N * logN * logN);
79}
80
02d92e3b 81int
11f10e6b 82main()
02d92e3b 83{
11f10e6b 84 test02();
11f10e6b 85 return 0;
02d92e3b 86}