代码搜索:huffmancode
找到约 412 项符合「huffmancode」的源代码
代码结果 412
www.eeworm.com/read/409396/11328325
doc huffmancode.doc
www.eeworm.com/read/409396/11328327
cpp huffmancode.cpp
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
#define N_CHR 29
#define LIST_SIZE 2*N_CHR-1
typedef struct //节点类型
{
char chr;
int weight;
int parent,lchild,r
www.eeworm.com/read/263387/11365291
h huffmancode.h
// HuffmanCode.h: interface for the Huffman class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_HUFFMANCODE_H__B541F1E0_C006_49BE_8408_E3D94D5891D4__
www.eeworm.com/read/263387/11365307
cpp huffmancode.cpp
// HuffmanCode.cpp: implementation of the Huffman class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Huffman.h"
#include "HuffmanCode
www.eeworm.com/read/262729/11392441
ncb huffmancode.ncb
www.eeworm.com/read/262729/11392447
sln huffmancode.sln
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HuffmanCode", "HuffmanCode\HuffmanCode.vcproj", "{2F6E654D-660
www.eeworm.com/read/262729/11392462
cpp huffmancode.cpp
// HuffmanCode.cpp : Defines the entry point for the console application.
//
#include
#include
#include
#include
using namespace std;
int *w;//声明全局变量
t
www.eeworm.com/read/262729/11392466