huffman_ decoding_ algorithm for tree huffman encoded data
1 回表示 (過去 30 日間)
古いコメントを表示
Durga srinivasu Jarajapu
2019 年 9 月 23 日
回答済み: Walter Roberson
2019 年 9 月 23 日
Hi,
I have tree huffman encoded data, i want to know tree huffman decoding alogrithm .
0 件のコメント
採用された回答
Walter Roberson
2019 年 9 月 23 日
Put your pointer at the root of the decoding tree
Repeat:
Are you at a leaf of the decoding tree? If so then emit the associated value and reset your pointer to the root of the tree
If not then are you at end of encoding data? If so stop.
If not then input one bit from the encoded data, and use it to decide which of the two leaves to set the pointer to.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Denoising and Compression についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!