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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* Copyright (c) 2020 Kohei Yoshida
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
************************************************************************/
#include <mdds/trie_map.hpp>
#include <iostream>
int main()
{
//!code-start: type
using trie_map_type = mdds::trie_map<std::string, int>;
//!code-end: type
//!code-start: inst
// Cities in North Carolina and their populations in 2013.
trie_map_type nc_cities;
//!code-end: inst
//!code-start: populate
// Insert key-value pairs.
nc_cities.insert("Charlotte", 792862);
nc_cities.insert("Raleigh", 431746);
nc_cities.insert("Greensboro", 279639);
nc_cities.insert("Durham", 245475);
nc_cities.insert("Winston-Salem", 236441);
nc_cities.insert("Fayetteville", 204408);
nc_cities.insert("Cary", 151088);
nc_cities.insert("Wilmington", 112067);
nc_cities.insert("High Point", 107741);
nc_cities.insert("Greenville", 89130);
nc_cities.insert("Asheville", 87236);
nc_cities.insert("Concord", 83506);
nc_cities.insert("Gastonia", 73209);
nc_cities.insert("Jacksonville", 69079);
nc_cities.insert("Chapel Hill", 59635);
nc_cities.insert("Rocky Mount", 56954);
nc_cities.insert("Burlington", 51510);
nc_cities.insert("Huntersville", 50458);
nc_cities.insert("Wilson", 49628);
nc_cities.insert("Kannapolis", 44359);
nc_cities.insert("Apex", 42214);
nc_cities.insert("Hickory", 40361);
nc_cities.insert("Goldsboro", 36306);
//!code-end: populate
//!code-start: search-cha
std::cout << "Cities that start with 'Cha' and their populations:" << std::endl;
auto results = nc_cities.prefix_search("Cha");
for (const auto& kv : results)
{
std::cout << " " << kv.first << ": " << kv.second << std::endl;
}
//!code-end: search-cha
//!code-start: search-w
std::cout << "Cities that start with 'W' and their populations:" << std::endl;
results = nc_cities.prefix_search("W");
for (const auto& kv : results)
{
std::cout << " " << kv.first << ": " << kv.second << std::endl;
}
//!code-end: search-w
//!code-start: pack
auto packed = nc_cities.pack();
//!code-end: pack
//!code-start: search-c
std::cout << "Cities that start with 'C' and their populations:" << std::endl;
auto packed_results = packed.prefix_search("C");
for (const auto& kv : packed_results)
{
std::cout << " " << kv.first << ": " << kv.second << std::endl;
}
//!code-end: search-c
//!code-start: find-one
// Individual search.
auto it = packed.find("Wilmington");
std::cout << "Population of Wilmington: " << it->second << std::endl;
//!code-end: find-one
//!code-start: find-none
// You get an end position iterator when the container doesn't have the
// specified key.
it = packed.find("Asheboro");
std::cout << "Population of Asheboro: ";
if (it == packed.end())
std::cout << "not found";
else
std::cout << it->second;
std::cout << std::endl;
//!code-end: find-none
return EXIT_SUCCESS;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|