代码搜索:匹配方式
找到约 10,000 项符合「匹配方式」的源代码
代码结果 10,000
www.eeworm.com/read/295991/8129540
bmp 图像匹配模板文件.bmp
www.eeworm.com/read/243219/12954631
c 括号匹配2.c
#include
#include
#define MaxSize 100
int main()
{
int i,left,right,len,flag;
char exp[MaxSize];
while(scanf("%s",exp)!=EOF)
{
flag=0;
left=0;
right=0;
www.eeworm.com/read/243219/12954658
c 括号匹配1.c
#include
#include
#include
#define MaxStackSize 100
typedef char DataType;
#include "SeqStack.h"
int main()
{
int len;
char exp[MaxStackSize];
int Chec
www.eeworm.com/read/307265/13724960
txt 6.4.6串的匹配.txt
S EQU 2000H
T EQU 30H
N DATA 38H
M DATA 39H
FIND BIT 00H
TEST:
MOV N,#5BH
MOV P2,#HIGH(S)
MOV R0,#LOW(S)
MOV DPTR,#LIST
MOV R2,N
LOOP:
CLR A
MOVC A,@A+DP
www.eeworm.com/read/303278/13819232
txt 6.4.6串的匹配.txt
S EQU 2000H
T EQU 30H
N DATA 38H
M DATA 39H
FIND BIT 00H
TEST:
MOV N,#5BH
MOV P2,#HIGH(S)
MOV R0,#LOW(S)
MOV DPTR,#LIST
MOV R2,N
LOOP:
CLR A
MOVC A,@A+DP
www.eeworm.com/read/303157/13820625
pdf 浅谈图像匹配研究.pdf
www.eeworm.com/read/302741/13828081
frx 右匹配影像窗口.frx
www.eeworm.com/read/302741/13828096
frm 右匹配影像窗口.frm
VERSION 5.00
Begin VB.Form Form3
BackColor = &H80000002&
Caption = "右匹配影象窗口"
ClientHeight = 9450
ClientLeft = 60
ClientTop = 465
ClientW
www.eeworm.com/read/484106/6591080
swf 串的模式匹配.swf
www.eeworm.com/read/478955/6708573
txt 最大子串匹配.txt
//最大子串匹配,复杂度O(mn)
//返回最大匹配值,传入两个串和串的长度,重载返回一个最大匹配
//注意做字符串匹配是串末的'\0'没有置!
//可更改元素类型,更换匹配函数和匹配价值函数
#include
#define MAXN 100
#define max(a,b) ((a)>(b)?(a):(b))
#define _match(a,b) ((a)