這篇文章主要介紹了PHP實現統計一個數字在排序數組中出現次數的方法,涉及php基於二分尋找演算法在數組中進行尋找及統計的相關操作技巧,需要的朋友可以參考下
本文執行個體講述了PHP實現統計一個數字在排序數組中出現次數的方法。分享給大家供大家參考,具體如下:
題目
統計一個數字在排序數組中出現的次數。
題解
既然是排序數組,使用二分尋找是效率最高的。找到之後再向兩側拓展一下。
代碼
<?phpfunction GetNumberOfK($data, $k){ if(count($data)==0){ return 0; } $index = 0; $low = 0; $high = count($data)-1; $middle = 0; //二分尋找找到k的index while($low<=$high){ $middle = ($high+$low)>>1; if($data[$middle]==$k){ $index = $middle; break; } else if($data[$middle]>$k) { $high = $middle -1; }else{ $low = $middle+1; } $index = -1; } // console.log(index); // 如果沒找到 if($index==-1){ return 0; } //找到了 分別往左右尋找邊界 $start = $index; $end = $index; $count = 0; while($data[$start]==$k){ $count++; $start--; } while($data[$end]==$k){ $count++; $end++; } return $count-1;}
PS:這裡再為大家推薦2款功能類似的統計工具(JS實現)供大家參考使用:
線上字數統計工具:
http://tools.jb51.net/code/zishutongji
線上字元統計與編輯工具:
http://tools.jb51.net/code/char_tongji
您可能感興趣的文章:
PHP調用ffmpeg對視頻並拼接指令碼
Yii2中的情境(scenario)和驗證規則(rule)的詳解
MixPHP、Yii和CodeIgniter的並發壓力測試的小結