代码搜索:huffmancode

找到约 412 项符合「huffmancode」的源代码

代码结果 412
www.eeworm.com/read/193089/8254075

cpp 哈夫曼.cpp

#include"stdio.h" #include"stdlib.h" #include"string.h" typedef char ElemType; typedef struct { ElemType elem; unsigned int m_weight; unsigned int parent,lchild,rchild; }HTNod
www.eeworm.com/read/375618/9355629

h huffmantree.h

#include static const bool LEFT=true,RIGHT=false; struct huffmancode { char chr; bool *code; int length; huffmancod
www.eeworm.com/read/360331/10102443

c huffman.c

#include #include #include #define LEN 256 #define BUFFERMAX 4196 #define HUFFMANCODELEN 16 #define HUFFMANCODEBYTE(code,i) hhptr[code].htreeptr->huffmancode
www.eeworm.com/read/360327/10102565

c huffman1.c

#include "mpi.h" #include #include //#include #include #define LEN 256 #define BUFFERMAX 4196 #define HUFFMANCODELEN 16 int main( int argc, char *argv[]) {
www.eeworm.com/read/360327/10102570

c huffman2.c

#include "mpi.h" #include #include //#include #include #define LEN 256 #define BUFFERMAX 4196 #define HUFFMANCODELEN 16 int main( int argc, char *
www.eeworm.com/read/162077/10341878

cpp decode.cpp

#include #include /* 定义头文件结构 */ #define MAXNUMBER 200*1024 typedef unsigned short BYTE; typedef unsigned short WORD; typedef unsigned int DWORD; typedef struct { u
www.eeworm.com/read/458091/7313344

h huffman.h

#ifndef HUFFMAN_H #define HUFFMAN_H #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define OVERFLOW -2 #define MAX 60//要编码的字符串长度 #define MAXNUM 10000//字符串所对应的编码的最长长度 typedef int
www.eeworm.com/read/388438/7805122

c hafuman.c

#include "stdio.h" #include "stdlib.h" #include /*huffmancode storage struct*/ typedef struct { char ch; char code[20]; int len; }Cod
www.eeworm.com/read/433448/7929071

h datastruct.h

#ifndef DATASTRUCT_H #define DATASTRUCT_H typedef struct { int weight; int parent,lchild,rchild; }HTNode, * HuffmanTree; typedef char * * HuffmanCode; #endif
www.eeworm.com/read/433448/7929100

h stdafx.h

#ifndef STDAFX_H #define STDAFX_H #include #include #include #include #include #include "DataStruct.h" void getletter(char * in); void