748. Shortest Completing Wordphp
從給定的一個字符串中提取字符。從另外一個給定的單詞數組中,選擇出所提取的字符在單詞中出現次數相等或大於的單詞。若出現次數相同,則返回第一個符合條件的單詞。數組
假定結果一定存在。spa
先提取字符,轉換成小寫,並計算字符出現的次數。.net
遍歷數組中的每個單詞,先計算單詞中每一個字符出現的次數。code
同時,遍歷前面計算的字符出現次數,如有任何一個字符沒有在當前單詞中沒出現,那麼能夠拋棄當前單詞。
若出現次數小於前面計算的出現次數,也能夠排除。leetcode
若出現了符合的單詞,先判斷和原先保存的單詞長度是否短。
短則覆蓋,長則拋棄。字符串
<?php
class Solution {
/** * @param String $licensePlate * @param String[] $words * @return String */
function shortestCompletingWord($licensePlate, $words) {
$plateCounts = [];
$licenseArray = str_split(strtolower($licensePlate));
foreach($licenseArray as $val){
if(($val>='a' && $val<='z')||($val>='A' && $val<='Z')){
if(!isset($plateCounts[$val])){
$plateCounts[$val] = 0;
}
$plateCounts[$val] += 1;
}
};
$match = null;
foreach($words as $word){
$wordCounts = array_count_values(str_split($word));
$failed = false;
foreach($plateCounts as $char => $amount){
if(!isset($wordCounts[$char])){
$failed = true;
break;
}
if($amount > $wordCounts[$char]){
$failed = true;
break;
}
}
if(!$failed){
if(is_null($match)){
$match = $word;
}
else{
if(strlen($match)>strlen($word)){
$match = $word;
}
}
}
}
return $match;
}
}
複製代碼
若以爲本文章對你有用,歡迎用愛發電資助。get