代码搜索:pcode
找到约 332 项符合「pcode」的源代码
代码结果 332
www.eeworm.com/read/259580/11781224
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/154189/11984151
m 4-2.m
pcode HJ; %%生成p码文件,加快执行速度
pcode deBoor;
pcode LJD2;
pcode JCHZH;
pcode Ji2;
x=[0 1 2 3 4 5 6]; %%赋初始值
y=[0 1 3 5 3 2 0];
z=[0 0 0 0 0 0 0]; %%便于调用函数
n=len
www.eeworm.com/read/154189/11984161
m 4-4.m
pcode LJD; %%生成p码文件,加快执行速度
pcode CHZH;
pcode HJ;
pcode deBoor;
x0=[0 1 2 3 4 5 6]; %%赋初始值
y0=[0 1 3 5 3 2 0];
z0=[0 0 0 0 0 0 0];
k=3;
n0=length(x0);
www.eeworm.com/read/154186/11984192
m 4-3.m
pcode HJ;
pcode deBoor;
x=[0 1 2 3 4 5 6];
y=[0 1 3 5 3 2 0];
z=[0 0 0 0 0 0 0];
k=3;
n=length(x);
u=HJ(n,k,x,y,z);
x1=deBoor(n,k,x,u);
y1=deBoor(n,k,y,u);
plot(x1,y1,'LineWidth'
www.eeworm.com/read/154186/11984199
m 4-1.m
pcode HJ; %%生成p码文件,加快执行速度
pcode deBoor;
x=[0 1 2 3 4 5 6]; %%附初值
y=[0 1 3 5 3 2 0];
z=[0 0 0 0 0 0 0]; %%便于调用函数
k=2;
n=length(x
www.eeworm.com/read/251288/12354702
cpp chinaviewview.cpp
// ChinaViewView.cpp : implementation of the CChinaViewView class
//
#include "stdafx.h"
#include "ChinaView.h"
#include "BaseClass.h" //添加基类
#include "math.h"
#include "MainFrm.h"
www.eeworm.com/read/132141/14107619
cpp compress.cpp
// LZW compression
// note changes needed to compile with g++
#include
#include
#include
#include
#include
#include "chash.h"
// c
www.eeworm.com/read/132141/14107773
cpp decomp.cpp
// Decompress using Ziv-Lempel-Welch
// note changes needed to compile with g++
#include
#include
#include
#include
#include
class
www.eeworm.com/read/132043/14112929
cpp compile.cpp
#include
#include
#include
#include"compile.h"
#define MAX_pcodeSIZE 200
#define MAX_tableSIZE 30
#define MAX_RUNSTR 300
enum SYM{plus,minus,times,div,lparen,rpar
www.eeworm.com/read/130119/14207927
c lzw1.c
#include
#include
#include
#include
#include
#include
#define BOOL int
#define MAX_CODES 4096
#define TRUE 1
#define FALSE 0