CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - 模式匹配
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - 模式匹配 - List
[
Other resource
]
三种模式匹配算法的比较
DL : 0
Las Vegas,KMP,Mentro carlo这三种模式匹配算法的原代码,对其进行了时间及出错率的比较-Las Vegas, KMP, Mentro carlo three pattern matching algorithm of the original code, its time and the error rate comparison
Date
: 2008-10-13
Size
: 14.31kb
User
:
lxr
[
Other resource
]
模式匹配
DL : 0
用C语言编写的一个简单的数据结构算法.可实现括号的模式匹配.-C language of a simple data structure algorithms. Brackets can be realized pattern matching.
Date
: 2008-10-13
Size
: 1.29kb
User
:
王安耀
[
Other
]
改良快速模式匹配
DL : 0
Knuth的快速模式匹配算法改良,可以匹配含通配符?和*的标准串-the rapid improvement of pattern matching algorithm can match with wildcards? * And the standard Series
Date
: 2008-10-13
Size
: 7.41kb
User
:
林志伟
[
Other
]
KMP模式匹配(可以有通配符)
DL : 0
使用著名的KMP模式匹配算法进行字符串匹配,还可以有通配符-use of the famous KMP string matching algorithms can also be wildcards
Date
: 2008-10-13
Size
: 7.66kb
User
:
张远洋
[
Mathimatics-Numerical algorithms
]
模式匹配小算法(支持通配符)
DL : 0
由于项目需要,最近写了一个模式匹配算法,支持%(代表一个或者任意个字符),_(代表一个字符)通配符号,自己在vc6下测试通过.
Date
: 2010-09-06
Size
: 844byte
User
:
tjltail
[
Other
]
一种多尺度的时间序列相似模式匹配算法
DL : 0
提出一种多尺度的时间序列相似模式匹配算法.该算法用离散小波变换对时间序列进行多分辨分析,在多尺度上提取序列的形状特征.然后在不同的尺度上找出相似的序列和子序列模式.该算法可以匹配不同长度的序列,并能支持垂直平移变换和幅度伸缩变换.
Date
: 2011-01-22
Size
: 140.45kb
User
:
zhuyiming@msn.com
[
Mathimatics-Numerical algorithms
]
kuaisuzifuchuan
DL : 0
快速模式匹配算法-rapid pattern matching algorithm
Date
: 2025-07-03
Size
: 97kb
User
:
孙好
[
Other
]
改良快速模式匹配
DL : 0
Knuth的快速模式匹配算法改良,可以匹配含通配符?和*的标准串-the rapid improvement of pattern matching algorithm can match with wildcards?* And the standard Series
Date
: 2025-07-03
Size
: 7kb
User
:
林志伟
[
Other
]
KMP模式匹配(可以有通配符)
DL : 0
使用著名的KMP模式匹配算法进行字符串匹配,还可以有通配符-use of the famous KMP string matching algorithms can also be wildcards
Date
: 2025-07-03
Size
: 871kb
User
:
张远洋
[
Mathimatics-Numerical algorithms
]
stringmatch
DL : 0
字符串的模式匹配(KMP算法)-string pattern matching (KMP algorithm)
Date
: 2025-07-03
Size
: 11kb
User
:
谭悦
[
Data structs
]
KMP匹配算法
DL : 0
由于简单模式匹配算法在一次字符比较失败后,简单的把模式串位置向前移动一个字符位置,这样就丢掉了前面字符匹配中得到的信息,效率差。所以就需要一种无回溯的算法来提高效率,这里使用KMP(Knuth-Morris-Pratt)算法。模式串前面的连续片断部分称“前缀模式”,前缀模式在模式串后部重复出现的情况可以用来避免重复进行已经做过的检查,这是KMP算法中的一个重要概念。-as simple pattern-matching algorithm to compare a character failure, a simple model put forward position Series mobile location of a character, would be lost in front of characters matching the information inefficiently. There is a need for a non-backtracking algorithms to improve efficiency, the use of KMP here (Knuth-Morris-Pratt) algorithm. Model Series in front of a row clips part said "prefix model," prefix string pattern in the pattern of recurring back can be used to avoid duplication of inspection has been done, KMP algorithm is an important concept.
Date
: 2025-07-03
Size
: 3kb
User
:
卢孝飞
[
Multimedia Develop
]
Patten Match
DL : 0
基于NI公司的视频捕捉,模式匹配,图象跟踪软件,参加大学生挑战杯科技作品比赛.-the video capture, pattern matching, image tracking software, students participate Technology Challenge Cup competitions.
Date
: 2025-07-03
Size
: 297kb
User
:
廖降龙
[
Data structs
]
PatternMatching
DL : 0
这是计算机专业硕士生课程《算法设计与实现》中讲到的模式匹配算法的实现,并且将该算法与KMP算法进行了比较。-It was the professional degree programs, "Algorithm Design and Implementation" referred to the pattern matching algorithm implementation, and algorithm and KMP algorithm are compared.
Date
: 2025-07-03
Size
: 311kb
User
:
孙江萍
[
Data structs
]
三种模式匹配算法的比较
DL : 0
Las Vegas,KMP,Mentro carlo这三种模式匹配算法的原代码,对其进行了时间及出错率的比较-Las Vegas, KMP, Mentro carlo three pattern matching algorithm of the original code, its time and the error rate comparison
Date
: 2025-07-03
Size
: 325kb
User
:
lxr
[
Data structs
]
字符串匹配算法
DL : 0
一个简单的数据结构算法,字符串基本匹配算法与模式匹配算法的演示.-a simple data structure algorithms, the basic string matching algorithms and pattern matching algorithm demonstration.
Date
: 2025-07-03
Size
: 13kb
User
:
谢树扬
[
Data structs
]
模式匹配
DL : 0
用C语言编写的一个简单的数据结构算法.可实现括号的模式匹配.-C language of a simple data structure algorithms. Brackets can be realized pattern matching.
Date
: 2025-07-03
Size
: 1kb
User
:
王安耀
[
Graph Recognize
]
简单的字符识别
DL : 1
一个简单的字符识别程序,根据字体的结构识别,而不是通常所用的模式匹配,神经网络识别,开辟了新的思路,希望对图像识别感兴趣的有所帮助。VC++开发-a simple character identification procedures, according to the font structure identification, but not usually used in pattern matching, neural network and open up a new line of thought, and I hope to image recognition interested in some help. VC
Date
: 2025-07-03
Size
: 1.82mb
User
:
guo
[
Windows Develop
]
模式匹配MFC_jwj
DL : 0
此程序用mfc完成查找替换功能,在编辑框中输入一串字符,然后输入你要查询的字符串,之后输入你要替换的字符串(替换查询的内容),结果显示在最后的编辑框中-mfc use this procedure to complete the replacement search function, the edit box input string of characters then enter your inquiries to the string, after you input the string to replace (Replacement of the inquiries), results showed that the final edit box
Date
: 2025-07-03
Size
: 1.84mb
User
:
蒋文靖
[
Data structs
]
kmpEx
DL : 0
KMP算法是字符串模式匹配算法, 解决DBCS字符集的问题。-KMP algorithm is a string pattern matching algorithms, DBCS characters to solve the problem,.
Date
: 2025-07-03
Size
: 1kb
User
:
黄建雄
[
Data structs
]
stringprocess
DL : 0
字符串模式匹配,查找子串加以代替,有两种模式匹配算法-string pattern matching, substring search to be replaced, there are two types of pattern matching algorithm
Date
: 2025-07-03
Size
: 172kb
User
:
苗建新
«
1
2
3
4
5
6
7
8
9
10
...
37
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.