代码搜索:huffmancode
找到约 412 项符合「huffmancode」的源代码
代码结果 412
www.eeworm.com/read/250073/12436127
h huffmancode.h
class node
{
public:
CString sign;
double probabality;
CString code;
node *next;
node *left;
node *right;
node *parent;
//构造函数
node ();
};
node::node()
www.eeworm.com/read/221778/14722061
opt huffmancode.opt
www.eeworm.com/read/221778/14722064
dsp huffmancode.dsp
# Microsoft Developer Studio Project File - Name="HuffmanCode" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x8
www.eeworm.com/read/221778/14722067
plg huffmancode.plg
Build Log
--------------------Configuration: HuffmanCode - Win32 Debug--------------------
Command Lines
Creating temporary file "d:\Temp\RSP4C
www.eeworm.com/read/221778/14722069
ncb huffmancode.ncb
www.eeworm.com/read/221778/14722072
dsw huffmancode.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/221778/14722073
cpp huffmancode.cpp
#include
#include
#include
#include
#pragma warning (disable:4786)
using namespace std;
#define MAX_NUM 8
double Weight[MAX_NUM]={0.4,0.18,0.1,0.1,0.07,
www.eeworm.com/read/116464/14969217
h huffmancode.h
// HuffmanCode.h: interface for the CHuffmanCode class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_HUFFMANCODE_H__59CD583B_EA59_4609_8165_01B52AF6C
www.eeworm.com/read/116464/14969272
cpp huffmancode.cpp
// HuffmanCode.cpp: implementation of the CHuffmanCode class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Huffman.h"
#include "Huffma
www.eeworm.com/read/308968/13684990