PHP實現的字串匹配演算法樣本

來源:互聯網
上載者:User
這篇文章主要介紹了PHP實現的字串匹配演算法,簡單描述了sunday演算法的概念與原理,並結合執行個體形式分析了php基於sunday演算法實現字串匹配操作相關技巧,需要的朋友可以參考下

本文執行個體講述了PHP實現的字串匹配演算法————sunday演算法。分享給大家供大家參考,具體如下:

Sunday演算法是Daniel M.Sunday於1990年提出的字串模式比對。其核心思想是:在匹配過程中,模式串發現不匹配時,演算法能跳過儘可能多的字元以進行下一步的匹配,從而提高了匹配效率。

<?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效能分析工具xhprof的安裝使用與相關的注意事項

php封裝db類串連sqlite3資料庫的方法執行個體講解

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.