Design
ptries.txt
Associated article: Patricia Tries
Tags: C/C++ JVM Languages Design
Published source code accompanying the article by Konstantin Knizhnik in which he examines the Patricia Trie, a specialized indexes that can lead to faster development and more efficient code.
Patricia Tries
by Konstantin Knizhnik
=============================
class Route
{
Vector<bool> dest;
uint4 gateway;
uint4 interf;
uint2 metric;
unique patricia<dest> by_dest;
};
=============================
mco_cursor_t csr;
if (MCO_S_OK == Route_by_dest_index_cursor(trans, &...


