An open API service indexing awesome lists of open source software.

https://github.com/bojanludajic/trie-ip-addresses

C program implementing the Trie data structure to efficiently store and search IPv4 addresses.
https://github.com/bojanludajic/trie-ip-addresses

algorithms-and-data-structures networking trie

Last synced: 3 months ago
JSON representation

C program implementing the Trie data structure to efficiently store and search IPv4 addresses.

Awesome Lists containing this project

README

          

## Trie-based IP storage

This program implements a Trie for storing and iterating through IPv4 addresses. This data structure offers fast prefix-based searching,
while requiring minimal memory overhead.

### Features
- [x] Insertion/lookup
- [x] CIDR-based lookup
- [ ] Subnet calculations