Repository navigation

#

trie-tree-autocomplete

C#
120
8 个月前

A Trie implementation in Go meant for auto-completion use cases. Supports Levenshtein distance search.

Go
111
2 年前

Succinct Data Structure of Trie, written in Go

Go
42
4 年前

Restful Autocomplete service with Neo4j graph backend. Returns top suggestions.

Python
40
3 个月前

Trie data structure implementation in Golang 🌳

Go
9
5 年前

autocomplete function used search engines, spell-checking, text-messengers, etc. Includes a bloom filter that provides memory efficient check of whether an item has been inserted before through the use of hashing algorithms (FNV1AHash, CRCHash, and SBDMHash).

C++
7
5 年前

low-level, primitive autocomplete using trie data structure

JavaScript
5
7 年前
Jupyter Notebook
4
6 年前

An implementation of a trie-like data structure using Azure Table Storage to enable type-ahead style searching

C#
4
6 年前

A simple implementation of a Trie data structure to auto-complete words.

C++
4
4 年前

This Gradle based project written in Java demonstrate implementation of autocomplete suggestions feature (library) similar to as given by Google

Java
3
5 年前

Trie Data Structure Implementation for Autocomplete, Dictionary Search

JavaScript
3
8 年前

An example program of how to implement a Trie class.

Java
2
11 年前

Implementation of Code Auto-Completion and Spell-Checking using Tries and Ternary Tries.

Java
1
5 年前

A simple C++ program that uses a trie tree data structure to store words from a dictionary file, and it uses the trie to auto-complete query prefixes.

C++
1
2 年前

Implementation of a simple trie data structure, capable of storing strings of lowercase characters.

C
1
6 年前

Generating auto-correction suggestions using keyboard user-input by traversing the suffix trie based on the user input data so far and offering the most-likely string outcome based on a simplistic counter mechanism to track the user’s most used paths taken based on that scenario (similarly to a fusion tree)

C
1
2 年前