Sunday演算法是Daniel M.Sunday於1990年提出的字串模式比對。其核心思想是:在匹配過程中,模式串發現不匹配時,演算法能跳過儘可能多的字元以進行下一步的匹配,從而提高了匹配效率。本文主要介紹了PHP實現的字串匹配演算法,簡單描述了sunday演算法的概念與原理,並結合執行個體形式分析了php基於sunday演算法實現字串匹配操作相關技巧,需要的朋友可以參考下,希望能協助到大家。
<?php/* *@param $pattern 模式串 *@param $text 待匹配串 */function mySunday($pattern = '',$text = ''){ if(!$pattern || !$text) return false; $pattern_len = mb_strlen($pattern); $text_len = mb_strlen($text); if($pattern_len >= $text_len) return false; $i = 0; for($i = 0; $i < $pattern_len; $i++){ //組裝以pattern中的字元為下標的數組 $shift[$pattern[$i]] = $pattern_len - $i; } while($i <= $text_len - $pattern_len){ $nums = 0; //匹配上的字元個數 while($pattern[$nums] == $text[$i + $nums]){ $nums++; if($nums == $pattern_len){ return "The first match index is $i\n"; } } if($i + $pattern_len < $text_len && isset($shift[$text[$i + $pattern_len]])){ //判斷模式串後一位字元是否在模式串中 $i += $shift[$text[$i + $pattern_len]]; //對齊該字元 }else{ $i += $pattern_len; //直接滑動pattern_len位 } }}$text = "I am testing mySunday on sunday!";$pattern = "sunday";echo mySunday($pattern,$text);
運行結果:
The first match index is 25
相關推薦:
php如何?棧資料結構以及括弧匹配演算法的程式碼範例詳解
php中最簡單的字串匹配演算法,php匹配演算法_PHP教程
最簡單的php中字串匹配演算法教程