trie-data-structure
There are 137 repositories under trie-data-structure topic.
qwertie/ecsharp
Home of LoycCore, the LES language of Loyc trees, the Enhanced C# parser, the LeMP macro preprocessor, and the LLLPG parser generator.
rohansuri/adaptive-radix-tree
A fast and space efficient Radix tree in Java
aboffa/CoCo-trie
COllapsed and COmpressed trie: a data-aware compressed string dictionary
Devinterview-io/trie-data-structure-interview-questions
🟣 Trie Data Structure interview questions and answers to help you prepare for your next data structures and algorithms interview in 2025.
SamirPaulb/autocomplete
Auto Complete / Suggestion feature using Trie data structure
shubham0204/text-predictor-android
Next word prediction and word auto-complete for Android - with the power of Rust 🚀
kamilmielnik/trie
Trie data structure implementation in TypeScript. Highly performant. No dependencies. Built for a Scrabble Solver.
monirz/gotri
Trie data structure implementation in Golang 🌳
monirz/wordgo
A crossed platform desktop (dictionary) application written in Goa nd QT/QML :green_book: :fire:
SandroMaglione/itrie
Efficient, immutable and stack safe implementation of a Trie data structure in dart: autocomplete, text search, spell checking, strings and prefixes
locchuong/autocomplete
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).
vemonet/ptrie
🎄 Generic trie data structure (prefix tree) in Rust, with functions to search for common prefixes and postfixes
AleksandrHovhannisyan/Python-Trie-Implementation
Python trie implementation, for educational purposes
Ajitesh27/Dictionary-using-Trie-Datastructure
3rd sem Data Structures project to implement a real world dictionary using Trie data structure.
OrionJoshi/AutoSuggest_Tool
Auto Suggestion Using Trie
courseworks/AUT_AP_2024_Spring_HW3
The third assignment for AUT's Advanced Programming course (Spring 2024), focusing on the implementation and understanding of Bloom Filters and Tries. These structures optimize space and search operations, crucial for network systems and data processing.
rakshakannu/Trie-Auto-complete
A simple implementation of a Trie data structure to auto-complete words.
roman-vygon/simpleDATrie
Simple Double Array Trie implementation
idle-PB/Squint3
Squint- Sparse Quad Union Indexed Nibble Trie
JohnPapad/Distributed-File-Management-Tool
A distributed File Management Tool in C++, using processes, forking, named-pipes (FIFOs) and low-level I/O.
parshwa1999/parts-of-speech-recogniser
C program to find parts of speech in a given sentence
SubasriSK/Auto-Complete_Feature
Auto Complete / Suggestion feature using Trie data structure
vomnes/algorithms-go
Algorithms and data structures implementation in Go
courseworks/AUT_BP_2024_Fall_HW6
The sixth assignment for AUT's Basic Programming course (Fall 2024) emphasizes advanced C programming concepts. Students will implement a Trie data structure to practice dynamic memory allocation, structs, and file operations, and create a debugging macro for runtime error tracking with conditional logging.
h-sifat/word-unscrambler-visualizer
A simple app to visualize word unscrambling algorithm with the trie data structure.
himeshmehta/Auto-Suggest-or-Auto-complete-using-CPP-
implement auto_suggest and auto_complete feature using "TRIE" in C++.
mmahdin/AUT_AP_2024_Spring
advanced programming course focused on C++ programming (C++23)
shhsu/Subnet
High Performance C# Subnetting
thenamevishnu/browser
Browser is a compact web browser project aiming for simplicity and efficiency. Explore basic browsing functionalities, straightforward web browsing experience without unnecessary complexities.
thenamevishnu/job-sector-server-side
Job sector is the ultimate destination for freelancers across the board. Discover a diverse array of projects, collaborate with clients, and take your freelance journey to new heights. Whether you're a creative, coder, or consultant, job sector opens doors to success.
thenamevishnu/word-suggestion
Word suggestion is an npm module delivering intelligent word suggestions for enhanced text input in your applications. Elevate user experience with dynamic and context-aware suggestions, making content creation a breeze. Integrate word-suggestion to add a touch of efficiency to your projects.
akhildas675/data-structures-and-algorithms
My learning journey of Data Structures & Algorithms with practice and notes
courseworks/AUT_AP_2025_Spring_HW4
The 4th assignment for AUT's Advanced Programming course (Spring 2025), focusing on the implementation and understanding of Bloom Filters and Tries. These structures optimize space and search operations, crucial for network systems and data processing.
ivanbgd/prefix-trie-matching-rust
Prefix Trie data structure with Pattern Matching, in Rust
NagrajMG/No-More-Circles-Escaping-the-VSM-loop
Search Engine based on Cranfield dataset
TanMinati/Autocomplete_Engine_using_Trie_and_Fuzzy_Search
This repository contains the C++ implementation of a high-performance, typo-tolerant autocomplete engine. It uses a Trie (prefix tree) for extremely fast prefix matching and integrates fuzzy search (based on Levenshtein distance) to provide intelligent suggestions even when the user makes spelling mistakes.