Problem description:
The Morse code is a common code thatis used to encode messages consisting of letters and digits. Eachletter consists of a series of dots and dashes; for example, thecode for the letter a is •− and the code for the letter b is −•••.Store each letter of the alphabet in a node of a binary tree oflevel 5. The root node is at level 1 and stores no letter. The leftnode at level 2 stores the letter e (code is •), and the right nodestores the letter t (code is −). The four nodes at level 3
OR
OR