How works?
The algorithm consist in make a tree based in the frequency in that the characters appears in the string.
First, when we have a string we search the frequency of the characters, for example:
'Adriana'
And this is the frequency:
Then the characters are added to a list ordered from lowest to highest according to their reps.
From the list from the tree as follows:
- First we take the first two nodes of the list and create a new node in which its root will be NULL and the sum of the number of repetitions of these two nodes.
- Nodes taken from the list are removed and the new node is added to the list and we have as follows:
- Repeat the process to combine the following lower nodes and get this:
Now, this is my code:
[
]
:B
To be continued...
3+2 ._.
ResponderEliminarNP en tarea de codificación adaptativa.
ResponderEliminar