代码搜索:PCB辅助
找到约 10,000 项符合「PCB辅助」的源代码
代码结果 10,000
www.eeworm.com/read/140075/13111236
m table2.m
function p=table2(a)
%本函数辅助GF(2^5)域中运算时的数值换算关系
b=[2 4 8 16 5 10 20 13 26 17 7 14 28 29 31 27 19 3 6 12 24 21 15 30 25 23 11 22 9 18 ];
if a>31
a= mod(a, 31);
end;
if a==1
p=0;
else
www.eeworm.com/read/140075/13111250
m table1.m
function p=table1(a)
%本函数辅助GF(2^5)域中运算时的数值换算关系
b=[2 4 8 16 5 10 20 13 26 17 7 14 28 29 31 27 19 3 6 12 24 21 15 30 25 23 11 22 9 18 1];
if a>31
a= mod(a, 31);
end;
if a==0
p=1;
else
www.eeworm.com/read/138651/13227030
txt help.txt
---------------------------------*-帮 助 文 件-*--------------------------------
一、 程序介绍:
这是一个多项式计算程序,并支持函数计算,以及各种辅助功能。
多项式计算:
任意输入一个多项式,如果输入正确,则会给出计算结果,如
果是纯数字运算是数字,否则是多
www.eeworm.com/read/306386/13745535
m table2.m
function p=table2(a)
%本函数辅助GF(2^5)域中运算时的数值换算关系
b=[2 4 8 16 5 10 20 13 26 17 7 14 28 29 31 27 19 3 6 12 24 21 15 30 25 23 11 22 9 18 ];
if a>31
a= mod(a, 31);
end;
if a==1
p=0;
else
www.eeworm.com/read/306386/13745540
m table1.m
function p=table1(a)
%本函数辅助GF(2^5)域中运算时的数值换算关系
b=[2 4 8 16 5 10 20 13 26 17 7 14 28 29 31 27 19 3 6 12 24 21 15 30 25 23 11 22 9 18 1];
if a>31
a= mod(a, 31);
end;
if a==0
p=1;
else
www.eeworm.com/read/480316/6672390
h pushboxai.h
/*
* CACIter:用于记录结点访问状态的辅助模板类。TNodeKey为唯一确定当前状态的哈希值类型,应当是一个struct。
* 三种状态是:nsNone:无或不在结点访问状态表中;nsVisiting:正在访问;nsDead:已死亡
*/
#if !defined(AI__INCLUDED_)
#define AI__INCLUDED_
#include "
www.eeworm.com/read/262705/11394046
txt autopach使用说明.txt
AutoPath for OllyDbg(FixOD) by freecat
最棒的OD辅助工具.....可以让你使用OllyDbg调试时更顺手。。
使用方法:
可用LordPE或PETools等工具给OllyDbg的输入表增加AutoPath.DLL,函数 FixOdPath 即可使用,不使用就去掉就行
更新:
2005.11.21
1.躲过OpenProcess的反调试(t
www.eeworm.com/read/340219/12172090
txt 汉化说明.txt
【软件概要】
软件名称:PEiD
软件版本:0.94 20060510 汉化版
软件类型:脱壳辅助
运行环境:Win9X/ME/XP/2000/2003
软件开发商:snaker, Qwerton, Jibz & xineohP Productions
开发商网站:http://peid.has.it
原版文件:[不需要]
汉化文件:PEiD_095_20060510_West
www.eeworm.com/read/223339/14644652
cpp algo0709.cpp
void MiniSpanTree_PRIM(MGraph G, VertexType u) { // 算法7.9
// 用普里姆算法从第u个顶点出发构造网G的最小生成树T,输出T的各条边。
// 记录从顶点集U到V-U的代价最小的边的辅助数组定义:
// struct {
// VertexType adjvex;
// VRType
www.eeworm.com/read/219502/14878305
cpp algo0709.cpp
void MiniSpanTree_PRIM(MGraph G, VertexType u) { // 算法7.9
// 用普里姆算法从第u个顶点出发构造网G的最小生成树T,输出T的各条边。
// 记录从顶点集U到V-U的代价最小的边的辅助数组定义:
// struct {
// VertexType adjvex;
// VRType