Tries Part II, Huffman Coding

Channel:
Subscribers:
2,640
Published on ● Video Link: https://www.youtube.com/watch?v=tiy51Q4zohQ



Duration: 1:27:42
174 views
2


Since Tries hold strings without actually holding strings, it is interesting to think about how to recover what strings you have in a Trie. You do so by building a string as you traverse down through the Trie.

We then talked about Huffman Coding, which uses a Trie and a Heap together to do text compression.







Tags:
csci 41
c++
trie
tries
huffman coding
heap
recursion