https://github.com/jason0214/simplist-file-compressing
file compressing use Huffman Tree
https://github.com/jason0214/simplist-file-compressing
Last synced: 3 months ago
JSON representation
file compressing use Huffman Tree
- Host: GitHub
- URL: https://github.com/jason0214/simplist-file-compressing
- Owner: Jason0214
- Created: 2016-08-16T05:11:00.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-03-30T13:36:20.000Z (over 9 years ago)
- Last Synced: 2025-01-17T16:15:04.050Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
README.md
# simplist-file-compressing
#### *compress file with huffman tree accomplished in C*
#### *file name in Chinese is not supported*
#### *don't support format which is already compressed, for example '.jpg' '.pdf' '.mp3' '.m4a'etc. Since most of the compressing format have already contained huffman code*
### how to use?
>follow the instruction and type the full file name(including extension name)
### how does it work?
###### this small program involves almost all the basic data structure and of cause I write it in order to make myself more familiar with the usage and concept with data structure.
>[Huffman Code](https://en.wikipedia.org/wiki/Huffman_coding)