Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / upper_bound / 2.cc
blob7c1c46e56ed0cc0f6238103f57d48421260982bd
1 // Copyright (C) 2001-2013 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 3, 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 COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
18 // 25.3.3 [lib.alg.binary.search] Binary search algorithms.
20 #include <algorithm>
21 #include <testsuite_hooks.h>
23 bool test __attribute__((unused)) = true;
25 const int A[] = {1, 2, 3, 3, 3, 5, 8};
26 const int C[] = {8, 5, 3, 3, 3, 2, 1};
27 const int N = sizeof(A) / sizeof(int);
29 // A comparison, equalivalent to std::greater<int> without the
30 // dependency on <functional>.
31 struct gt
33 bool
34 operator()(const int& x, const int& y) const
35 { return x > y; }
38 // Each test performs general-case, bookend, not-found condition,
39 // and predicate functional checks.
41 // 25.3.3.2 upper_bound, with and without comparison predicate
42 void
43 test02()
45 using std::upper_bound;
47 const int first = A[0];
48 const int last = A[N - 1];
50 const int* p = upper_bound(A, A + N, 3);
51 VERIFY(p == A + 5);
53 const int* q = upper_bound(A, A + N, first);
54 VERIFY(q == A + 1);
56 const int* r = upper_bound(A, A + N, last);
57 VERIFY(r == A + N);
59 const int* s = upper_bound(A, A + N, 4);
60 VERIFY(s == A + 5);
62 const int* t = upper_bound(C, C + N, 3, gt());
63 VERIFY(t == C + 5);
65 const int* u = upper_bound(C, C + N, first, gt());
66 VERIFY(u == C + N);
68 const int* v = upper_bound(C, C + N, last, gt());
69 VERIFY(v == C + 1);
71 const int* w = upper_bound(C, C + N, 4, gt());
72 VERIFY(w == C + 2);
75 int
76 main()
78 test02();
79 return 0;