代码搜索:识别算法
找到约 10,000 项符合「识别算法」的源代码
代码结果 10,000
www.eeworm.com/read/334029/12647023
txt java算法.txt
import java.util.Random;
public class Sodoku {
private byte matrix[][] = null;
private byte buff[][] = null;
private byte log[] = null;
private Random seed = new Random();
public Sodok
www.eeworm.com/read/134721/13975939
txt des算法.txt
DES算法
How to implement the Data Encryption Standard (DES)
A step by step tutorial
Version 1.2
The Data Encryption Standard (DES) algorithm, adopted by the U.S.
government in 1977, i
www.eeworm.com/read/132465/14089116
opt 压缩算法.opt
www.eeworm.com/read/132465/14089124
plg 压缩算法.plg
Build Log
--------------------Configuration: 压缩算法 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\HUYING~1
www.eeworm.com/read/132465/14089125
dsp 压缩算法.dsp
# Microsoft Developer Studio Project File - Name="压缩算法" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Cons
www.eeworm.com/read/132465/14089126
dsw 压缩算法.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/132465/14089128
ncb 压缩算法.ncb
www.eeworm.com/read/203931/15348671
txt 内存算法.txt
/*功能描述:输入可用内存页面数和一个作业访问逻辑页号的序列
*给出FIFO、LRU、OPT算法的缺页中断率
*本程序中设初始页框里的页号与实际页号都不同
*在VC6.0里测试通过
*/
#include
#define M 40
int N;
struct Pro
{
int num,time;
};
int Input(int m,Pro
www.eeworm.com/read/202643/15377372
cpp prim算法.cpp
#include
#define INFINITY INT_MAX //最大值:无穷大
#define MAX_VERTEX_NUM 20 //最大顶点个数
#define MAX 100000 //最大值
typedef float VRTyp
www.eeworm.com/read/113279/15465055
txt dijkstra 算法.txt
var
a:array[1..maxn,1..maxn] of integer;
b,pre:array[1..maxn] of integer; {pre[i]指最短路径上I的前驱结点}
mark:array[1..maxn] of boolean;
procedure dijkstra(v0:integer);
begin
fillchar(m