Welcome![Sign In][Sign Up]
Location:
Search - pratt

Search list

[Otherpraat4627_win

Description: pratt為一套音訊處理軟體,包含頻譜分析,音高曲線追蹤
Platform: | Size: 1881471 | Author: 鍾彩星 | Hits:

[Other resourceKMP匹配算法

Description: 由于简单模式匹配算法在一次字符比较失败后,简单的把模式串位置向前移动一个字符位置,这样就丢掉了前面字符匹配中得到的信息,效率差。所以就需要一种无回溯的算法来提高效率,这里使用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.
Platform: | Size: 3257 | Author: 卢孝飞 | Hits:

[Data structsKMP匹配算法

Description: 由于简单模式匹配算法在一次字符比较失败后,简单的把模式串位置向前移动一个字符位置,这样就丢掉了前面字符匹配中得到的信息,效率差。所以就需要一种无回溯的算法来提高效率,这里使用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.
Platform: | Size: 3072 | Author: 卢孝飞 | Hits:

[Otherpraat4627_win

Description: pratt為一套音訊處理軟體,包含頻譜分析,音高曲線追蹤-pratt for a set of audio processing software, including spectral analysis, pitch tracking curve
Platform: | Size: 1881088 | Author: 鍾彩星 | Hits:

[Data structspascal

Description: pascal基本算法及优化(如数论问题\单纯背包问题等)-pascal the basic algorithm and optimization (for example on the issue of simple knapsack problem, etc.)
Platform: | Size: 7168 | Author: 诸宪军 | Hits:

[MPIkmp

Description: 字符串的kmp匹配算法并行计算的源程序。-KMP string matching algorithm parallel computation of the source.
Platform: | Size: 4096 | Author: 成斌 | Hits:

[ConsoleKnuth-Morris-Pratt

Description: Implementaci贸n del algoritmo KMP de String Matching
Platform: | Size: 155648 | Author: locowarcraft | Hits:

[DocumentsKMP008

Description: 串的模式匹配的朴素算法是O(N^2)的, 可以 利用KMP(由D.E.Knuth, J.H.Morris, V.R.Pratt提出)算法改进至线性的算法. KMP算法与朴素算法的不同在于:处理"失配"情况. 不同于将指针完全回溯, KMP算法先根据已经部分匹配的信息, 将匹配的指针跳过不必匹配的位置.-Series of simple pattern matching algorithm is O (N ^ 2), and can make use of KMP (from DEKnuth, JHMorris, VRPratt made) algorithm to improve the algorithm to linear. KMP algorithm and simple algorithm is different: the " mismatch" situation. pointer completely different to back, KMP algorithm first part of the basis of information match, the pointer will skip the match do not have to match the position.
Platform: | Size: 1024 | Author: 左刘鸿翔 | Hits:

[Algorithmknuth

Description: 大牛Knuth写的线性规划的C源代码,另附说明文档-Knuth s linear programming C source code, documentation attached
Platform: | Size: 116736 | Author: Fancy | Hits:

[Data structsSTRING

Description: 介紹了knuth-morris-pratt方法與化簡了的boyer-morre方法,這兩個方法在尋找字串中是否有一個特定的字串時有相當傑出的表現-Introduced knuth-morris-pratt methods and simplification of the boyer-morre method, the two methods in the search string if the string has a specific time to time the performance of a very distinguished
Platform: | Size: 14336 | Author: c2535103 | Hits:

[OtherKMP

Description: Knuth-Morris-Prath Pattern Matching algorithm in Matlab
Platform: | Size: 1024 | Author: daniel769 | Hits:

[Program docprattsolns

Description: solution manual pratt for satellite communication
Platform: | Size: 349184 | Author: monty | Hits:

[File Formatproc-ieee

Description: Broadband MIMO-OFDM Wireless Communications Gordon L. St¨uber, John Barry, Steve W. McLaughlin, Ye (Geoffrey) Li, Mary Ann Ingram, Thomas G. Pratt School of Electrical and Computer Engineering Georgia Institute of Technology Atlanta, GA 30332
Platform: | Size: 605184 | Author: samalqudah | Hits:

[Special Effectspratt

Description: Edge preservation measure Index: Pratt s Figure of Merit
Platform: | Size: 1024 | Author: bjency | Hits:

[OtherDigital_Image_Processing__Wiley

Description: Wiley Pratt作于2001年,个人感觉比Gonzalez的版本更清晰,且网上的资源不多。-Wiley Pratt made in 2001, individuals feel more clearly than the version Gonzalez, limited resources and the Internet.
Platform: | Size: 14948352 | Author: late | Hits:

[Mathimatics-Numerical algorithmsvckmp

Description: KMP 算法是由Knuth,Morris和Pratt等人共同提出的,所以成为Knuth-Morris-Pratt算法,简称KMP算法。KMP算法是字符串模式匹配中的经典算法。和BF算法相比,KMP算法的不同点是匹配过程中,主串的位置指针不会回溯,这样的结果使得算法时间复杂度只为O(n+m)。 采用VC++开发,实现KMP字符串匹配算法-KMP algorithm by Knuth, Morris and Pratt, who co-sponsored, so as Knuth-Morris-Pratt algorithm, called KMP algorithm. KMP algorithm is a classical string pattern matching algorithm. And the BF algorithm is compared, KMP algorithm is different from the matching process, the location of the main string pointer will not go back, this result makes the algorithm time complexity only O (n+ m). Using VC++ development, implementation KMP string matching algorithm
Platform: | Size: 610304 | Author: 宇烁 | Hits:

[Special EffectsPratt---Digital-Image-Processing

Description: W.K.,Pratt著的"Digital Image Processing"电子书 -WK, Pratt was the " Digital Image Processing" e-book
Platform: | Size: 16147456 | Author: 王云龙 | Hits:

[Special Effectsdigital_image_processing

Description: WILLIAM K. PRATT编写的数字图像处理(第三版),非常经典。-WILLIAM K. PRATT prepared by digital image processing (third edition), very classic.
Platform: | Size: 12203008 | Author: xiaojunsuus | Hits:

[Data structsstroki_algoritm_kmp

Description: The KMP(Knuth Morris Pratt) Algorithm
Platform: | Size: 22528 | Author: elmi92 | Hits:

[File OperateKnut-Morris-Pratt-Proiect

Description: Knut Morris Pratt Project - search a certain word through a uploaded file
Platform: | Size: 5040128 | Author: andreigeorgescu495 | Hits:
« 12 3 »

CodeBus www.codebus.net