xcdat/sample/sample.cpp

55 lines
1.6 KiB
C++
Raw Normal View History

2021-06-26 16:40:11 +00:00
#include <iostream>
#include <string>
#include <xcdat.hpp>
int main() {
std::vector<std::string> keys = {
2021-06-27 03:57:34 +00:00
"AirPods", "AirTag", "Mac", "MacBook", "MacBook_Air", "MacBook_Pro",
"Mac_Mini", "Mac_Pro", "iMac", "iPad", "iPhone", "iPhone_SE",
2021-06-26 16:40:11 +00:00
};
// The dataset must be sorted and unique.
std::sort(keys.begin(), keys.end());
keys.erase(std::unique(keys.begin(), keys.end()), keys.end());
2021-06-27 14:37:38 +00:00
auto trie = xcdat::build<xcdat::trie_8_type>(keys);
2021-06-26 16:40:11 +00:00
std::cout << "Basic operations" << std::endl;
{
const auto id = trie.lookup("MacBook_Pro");
if (id.has_value()) {
2021-06-27 03:57:34 +00:00
std::cout << trie.decode(id.value()) << " -> " << id.has_value() << std::endl;
2021-06-26 16:40:11 +00:00
} else {
std::cout << "Not found" << std::endl;
}
}
std::cout << "Common prefix search" << std::endl;
{
auto itr = trie.make_prefix_iterator("MacBook_Air");
while (itr.next()) {
2021-06-27 03:57:34 +00:00
std::cout << itr.decoded_view() << " -> " << itr.id() << std::endl;
2021-06-26 16:40:11 +00:00
}
}
std::cout << "Predictive search" << std::endl;
{
auto itr = trie.make_predictive_iterator("Mac");
while (itr.next()) {
2021-06-27 03:57:34 +00:00
std::cout << itr.decoded_view() << " -> " << itr.id() << std::endl;
2021-06-26 16:40:11 +00:00
}
}
2021-06-27 14:37:38 +00:00
std::string index_filename = "tmp.idx";
std::cout << "mem: " << xcdat::save(trie, index_filename) << std::endl;
{
auto ohter = xcdat::load<xcdat::trie_8_type>(index_filename);
std::cout << "num_keys:" << ohter.num_keys() << std::endl;
std::cout << "mem: " << xcdat::get_memory_in_bytes(ohter) << std::endl;
}
2021-06-26 16:40:11 +00:00
return 0;
}