代码搜索:Decompress
找到约 2,049 项符合「Decompress」的源代码
代码结果 2,049
www.eeworm.com/read/192491/8379483
java decompress.java
package Huffman;
import java.io.*;
import java.util.*;
import javax.imageio.stream.*;
public class Decompress{
private byte [] output;
private byte []table;//symbol table
private int len
www.eeworm.com/read/386496/8739962
pas decompress.pas
unit decompress;
//This unit decompresses images encoded by RunLengthEncoding (RLE), lossyJPEG or GE's proprietary compression algorithm
//Note: lossless JPEG are decoded by the separate unit 'lsjpe
www.eeworm.com/read/386496/8739984
dcu decompress.dcu
www.eeworm.com/read/366481/9812046
exe decompress.exe
www.eeworm.com/read/366481/9812053
c decompress.c
#include
#include
#include
#define MAX_CODES 4096
#define BOOL int
#define TRUE 1
#define FALSE 0
void decompress(void);
int get_code(void);
void output(in
www.eeworm.com/read/163336/10165843
h decompress.h
#include "stdafx.h"
int myBatfRead(FILE *fp1,char archCodeList[]);
int myTxtfWrite(FILE *fp2,char archCodeList[],CODE arCode[],int nSize);
www.eeworm.com/read/163336/10165849
cpp decompress.cpp
#include "stdafx.h"
#include "Decompress.h"
/*-------------------------解压缩函数------------------------*/
int fnDecompress(char sAdress[])
{
CODE *arCode;
FILE *fpHuf,*fpTxt;
char sTxtAdr
www.eeworm.com/read/272848/10941284
cpp decompress.cpp
// Decompress using Ziv-Lempel-Welch
#include
#include
using namespace std;
// constants
const MAX_CODES = 4096, // 2^12
BYTE_SIZE = 8,
EXCESS = 4,
www.eeworm.com/read/416426/11029368
c decompress.c
/*-------------------------------------------------------------*/
/*--- Decompression machinery ---*/
/*--- decompress.c ---*/
/
www.eeworm.com/read/466959/7025210