Simple morse converter using binary tree and hashmap.
Implemented 4 levels of the following tree for decoding.
Used the hashtable (alphabets only as of yet).
- Decoder:
- Use one space to seperate letters and two spaces to seperate words.
- Put the input string inside quotation marks.
- example input:
./morseconverter decode "-.- --- -. .. -.-. .... .. .-- .-"
- Encoder:
- Only alphabet conversion supported yet.
- example input:
./morseconverter encode "HeY"
git clone https://github.com/soham0-0/Morse-Code-Converter.git
cd Morse-Code-Converter/
make all