datastructure.h
来自「利用shannon定理对文件进行压缩与解压缩」· C头文件 代码 · 共 19 行
H
19 行
#ifndef DATASTRUCTURE_H_H_H
#define DATASTRUCTURE_H_H_H
struct FBFre
{
unsigned char fByte;
float freqency;
};
struct CRule
{
unsigned char fByte;
char *code;
};
struct DecodeTree
{
unsigned char data;
DecodeTree* lchild;
DecodeTree* rchild;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?