首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > Java > 采用尝试地图数据结构

采用尝试地图数据结构

  • 资源大小:53.17 kB
  • 上传时间:2021-06-30
  • 下载次数:0次
  • 浏览次数:0次
  • 资源积分:1积分
  • 标      签: map Academic Trie

资 源 简 介

This is a collection of libraries for efficient Search mechanisms in Java. Current libs consists of: 1. TrieMap: A simplistic Trie based Map with O(M) complexity where M is the number of bits in the search Key 1. Digital Search Trie: A simplistic Digital Search Trie with key values on each node. Average Complexity is O(lg M) where M is the number of bits in the search Key and leads to a balanced Binary Tree for a random set of fixed and unique keys. 1. Binary Trie: A simplistic Binary Trie with insert and search complxity of O(lg M) where M is the number of bits in the search Key and leads to a balanced Binary Tree for a random set of fixed and unique keys. 1. Patricia Trie: A Simple binary Patricia Trie (Radix =2). This trie does not check for similar bits, is more space optimized and is faster that all the other binary Tries. Work In Progress: 1. String based Patricia Trie 2. String based
VIP VIP
0.178656s