1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/*=========================================================================
*
* Copyright Insight Software Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#include "itksys/hash_set.hxx"
#include "itksys/hash_map.hxx"
#include <iostream>
/**
* Helper function to prevent compiler's unused variable warning.
*/
template <typename T>
void IgnoreUnusedVariable(const T&)
{
}
extern "C" {
#include <string.h>
}
struct eqstr
{
bool operator()(const char* s1, const char* s2) const
{
return strcmp(s1, s2) == 0;
}
};
void lookup(const itksys::hash_set<const char*, itksys::hash<const char*>, eqstr>& Set,
const char* word)
{
itksys::hash_set<const char*, itksys::hash<const char*>, eqstr>::const_iterator it
= Set.find(word);
std::cout << word << ": "
<< (it != Set.end() ? "present" : "not present")
<< std::endl;
}
inline void println(const char *s)
{ std::cout << std::endl << s << std::endl; }
int itkHashTableTest(int, char* [] )
{
println("Testing itksys::hash");
itksys::hash<const char*> H;
std::cout << "foo -> " << H("foo") << std::endl;
std::cout << "bar -> " << H("bar") << std::endl;
itksys::hash<int> H1;
std::cout << "1 -> " << H1(1) << std::endl;
std::cout << "234 -> " << H1(234) << std::endl;
itksys::hash<char> H2;
std::cout << "a -> " << H2('a') << std::endl;
std::cout << "Z -> " << H2('Z') << std::endl;
println("Testing itksys::hash_set");
typedef itksys::hash_set<const char*, itksys::hash<const char*>, eqstr> HashSetType;
HashSetType Set;
Set.insert("kiwi");
Set.insert("plum");
Set.insert("apple");
Set.insert("mango");
Set.insert("apricot");
Set.insert("banana");
lookup(Set, "mango");
lookup(Set, "apple");
lookup(Set, "durian");
Set.begin();
Set.end();
Set.size();
Set.max_size();
// CppCheck gives us a warning if the return value isn't used.
// This is to prevent the user from calling empty() when they mean clear().
if (Set.empty()) std::cout << "Set is empty." << std::endl;
Set.bucket_count();
Set.resize(50);
Set.insert("the horror");
Set.count("apple");
Set.find("kiwi");
HashSetType::iterator hsh_it = Set.begin();
HashSetType::const_iterator hst_const_it;
hst_const_it = Set.end();
HashSetType SetCopy;
SetCopy = Set;
println("Testing itksys::hash_map");
typedef itksys::hash_map<const char*, int, itksys::hash<const char*>, eqstr>
HashMapType;
HashMapType months;
months["january"] = 31;
months["february"] = 28;
months["march"] = 31;
months["april"] = 30;
months["may"] = 31;
months["june"] = 30;
months["july"] = 31;
months["august"] = 31;
months["september"] = 30;
months["october"] = 31;
months["november"] = 30;
months["december"] = 31;
std::cout << "september -> " << months["september"] << std::endl;
std::cout << "april -> " << months["april"] << std::endl;
std::cout << "june -> " << months["june"] << std::endl;
std::cout << "november -> " << months["november"] << std::endl;
months.begin();
months.end();
months.size();
months.max_size();
// CppCheck gives us a warning if the return value isn't used.
// This is to prevent the user from calling empty() when they mean clear().
if (months.empty()) std::cout << "Set is empty." << std::endl;
months.bucket_count();
months.resize(50);
HashMapType::value_type p("psychotic break", 2);
months.insert(p);
months.count("january");
months.find("june");
HashMapType::iterator map_it = months.begin();
HashMapType::const_iterator map_const_it;
map_const_it = months.end();
HashMapType MapCopy;
MapCopy = months;
IgnoreUnusedVariable(hsh_it);
IgnoreUnusedVariable(map_it);
return EXIT_SUCCESS;
}
|