Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / ext / pb_ds / regression / associative_containers.cc
blob64cfa351eac79db6f881711eba9680da80fdb8be
1 // -*- C++ -*-
3 // Copyright (C) 2005-2013 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the terms
7 // of the GNU General Public License as published by the Free Software
8 // Foundation; either version 3, or (at your option) any later
9 // version.
11 // This library is distributed in the hope that it will be useful, but
12 // WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
21 // Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
23 // Permission to use, copy, modify, sell, and distribute this software
24 // is hereby granted without fee, provided that the above copyright
25 // notice appears in all copies, and that both that copyright notice
26 // and this permission notice appear in supporting documentation. None
27 // of the above authors, nor IBM Haifa Research Laboratories, make any
28 // representation about the suitability of this software for any
29 // purpose. It is provided "as is" without express or implied
30 // warranty.
32 /**
33 * @file assoc_link_regression_test_1.cpp
34 * A linkage regression test.
38 #include <ext/pb_ds/assoc_container.hpp>
39 #include <iostream>
40 #include <cassert>
42 using namespace std;
43 using namespace __gnu_pbds;
45 /**
46 * The following function performs a sequence of operations on an
47 * associative container object mapping integers to characters.
49 template<typename Cntnr>
50 void
51 some_op_sequence(Cntnr& r_c)
53 assert(r_c.empty());
54 assert(r_c.size() == 0);
56 r_c.insert(make_pair(1, 'a'));
58 r_c[2] = 'b';
60 assert(!r_c.empty());
61 assert(r_c.size() == 2);
63 cout << "Key 1 is mapped to " << r_c[1] << endl;
64 cout << "Key 2 is mapped to " << r_c[2] << endl;
66 cout << endl << "All value types in the container:" << endl;
67 for (typename Cntnr::const_iterator it = r_c.begin(); it != r_c.end(); ++it)
68 cout << it->first << " -> " << it->second << endl;
70 cout << endl;
72 r_c.clear();
74 assert(r_c.empty());
75 assert(r_c.size() == 0);
78 void
79 assoc_link_regression_test_0()
82 // Perform operations on a collision-chaining hash map.
83 cc_hash_table<int, char> c;
84 some_op_sequence(c);
88 // Perform operations on a general-probing hash map.
89 gp_hash_table<int, char> c;
90 some_op_sequence(c);
94 // Perform operations on a red-black tree map.
95 tree<int, char> c;
96 some_op_sequence(c);
100 // Perform operations on a splay tree map.
101 tree<int, char, less<int>, splay_tree_tag> c;
102 some_op_sequence(c);
106 // Perform operations on a splay tree map.
107 tree<int, char, less<int>, ov_tree_tag> c;
108 some_op_sequence(c);
112 // Perform operations on a list-update map.
113 list_update<int, char> c;
114 some_op_sequence(c);
119 void
120 assoc_link_regression_test_1()
123 // Perform operations on a collision-chaining hash map.
124 cc_hash_table<int, char> c;
125 some_op_sequence(c);
129 // Perform operations on a general-probing hash map.
130 gp_hash_table<int, char> c;
131 some_op_sequence(c);
135 // Perform operations on a red-black tree map.
136 tree<int, char> c;
137 some_op_sequence(c);
141 // Perform operations on a splay tree map.
142 tree<int, char, less<int>, splay_tree_tag> c;
143 some_op_sequence(c);
147 // Perform operations on a splay tree map.
148 tree<int, char, less<int>, ov_tree_tag> c;
149 some_op_sequence(c);
153 // Perform operations on a list-update map.
154 list_update<int, char> c;
155 some_op_sequence(c);
160 main()
162 assoc_link_regression_test_0();
163 assoc_link_regression_test_1();
164 return 0;