RubyGems Navigation menu

critbit 0.5.1-java

A crit bit tree, also known as a Binary Patricia Trie is a trie (https://en.wikipedia.org/wiki/Trie), also called digital tree and sometimes radix tree or prefix tree (as they can be searched by prefixes), is an ordered tree data structure that is used to store a dynamic set or associative array where the keys are usually strings. Unlike a binary search tree, no node in the tree stores the key associated with that node; instead, its position in the tree defines the key with which it is associated. All the descendants of a node have a common prefix of the string associated with that node, and the root is associated with the empty string. Values are normally not associated with every node, only with leaves and some inner nodes that correspond to keys of interest. For the space-optimized presentation of prefix tree, see compact prefix tree. This code is a wrapper around https://github.com/jfager/functional-critbit. For more information go to: http://cr.yp.to/critbit.html

Gemfile:
= 复制到剪贴板 已复制!

安装:
=

版本列表:

  1. 0.5.2 - May 10, 2016 java (131.5 KB)
  2. 0.5.1 - December 30, 2015 java (131.5 KB)
  3. 0.5.0 - July 22, 2015 java (68.0 KB)

Development 依赖 (3):

shoulda ~> 0
simplecov ~> 0
yard ~> 0

业主:

作者:

  • Rodrigo Botafogo

SHA 256 校验和:

ba5586e4caecd90fd56660811a94da9916e69e38011fda4fafd2acc05ab1d632

下载总量 7,860

这个版本 2,189

许可:

MIT

需要的 Ruby 版本: >= 0

链接: