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

https://github.com/anujdhillxn/cpptries

Serializer-Deserializer for Tries in CPP
https://github.com/anujdhillxn/cpptries

cpp data-structures parsing

Last synced: 8 months ago
JSON representation

Serializer-Deserializer for Tries in CPP

Awesome Lists containing this project

README

          

This project supports serializing and deserializing of a trie.

The trie is formed in the file serializer.cpp and serialized within the same. The output is in the form of a .txt file.

Two arguments are to be supplied while execution,

To run, type in command line ->
g++ serializer.cpp -o serializer
./serializer words.txt serial.txt

This trie can be deserialized in deserializer.cpp and queries can be entered in the form of a text file. The code will then print on the console if it is present.

Two arguments are to be supplied while execution,

Sample execution ->
g++ deserializer.cpp -o deserializer
./deserializer serial.txt Inputs.txt