关于衍生词替换成词根的面试题

英语词汇中,有一个“词根”的概念,就是可以从词根后面加一些其他词语来组成一个新的长一点的词,叫做“衍生词”。例如,“an” 词根后跟“other”,就可以组成一个新词“another”。


现在,给出一个包含许多词根的字典,和一个句子。你需要将句子中所有的衍生词替换为它对应的词根。如果一个衍生词有对应多个词根,使用最短的词根来进行替换。


示例:
  输入:
    dict = ["cat", "bat", "rat"]
    sentence = "the cattle was rattled by the battery"
  输出:
    "the cat was rat by the bat"


注意:


  1. 所有输入均为小写
  2. 1 <= 词根字典长度 <= 1000
  3. 1 <= 句子词数 <= 1000
  4. 1 <= 词根长度 <= 100
  5. 1 <= 句子中每个词长度 <= 1000


请填充如下代码的 “// TODO” 部分




function replace_root($dict, $sentence) {
      // TODO
}


?>


代码:

[php]  view plain  copy
  1.     //词根字典  
  2.     $dict = ['cat','bat','ca','rat'];//为了满足题目使用最短的词根来替换的要求,特地多了个ca  
  3.     //此处运用冒泡排序的主要目的是为了解决当一个衍生词有多个词根时,用后面的短词根替换前面的短词根,就满足了题目使用最短的词根来替换的要求了。  
  4.     $dict = maopao($dict);//冒泡降序处理  
  5.     //代替换处理的句子,注意句中的衍生词cattle就有2个词根了,cat和ca,我们应取最短的ca  
  6.     $sentence = ' hello, the  cattle was rattled by the battery ';  
  7.     //调用替换词根函数,输出句子  
  8.     echo '替换前:'.$sentence;  
  9.     echo '
    '
    ;  
  10.     echo '替换后:'.replace_root($dict,$sentence);  
  11.   
  12.   
  13.     //替换词根  
  14.     function replace_root($dict,$sentence){  
  15.         //判断输入的参数格式是否正确  
  16.         if(!is_array($dict) || !is_string($sentence))  return '参数格式不对!';  
  17.         //判断词根字典长度是否符合要求  
  18.         if(count($dict) < 1 || count($dict) > 1000) return '词根字典长度不符合要求!';  
  19.         //去掉字符串左右两边的空格  
  20.         $trim_sentence = trim($sentence);  
  21.         //去掉没两个单词之间多余的空格,只空一格  
  22.         $greg_sentence = preg_replace("/\s+/"' '$trim_sentence);  
  23.         //把字符串转换成数组  
  24.         $sentence_array = explode(' ',$greg_sentence);  
  25.         //判断句子词数是否符合要求  
  26.         $sentence_length = $sentence_array;  
  27.         if(count($sentence_length) < 1 || count($sentence_length) > 1000) return '句子词数不符合要求!';  
  28.         foreach ($dict as $key => $val) {  
  29.             //判断字典的词根长度是否符合要求  
  30.             $root_length = strlen(trim($val));  
  31.             if($root_length < 1 || $root_length > 100) return '词根长度不符合要求!';  
  32.             foreach ($sentence_array as $k => &$v) {  
  33.                 //判断句子中单词的长度是否符合要求  
  34.                 $word_length = strlen($v);  
  35.                 if($word_length > 1000) return '句子中单词的长度不符合要求!';  
  36.                 if(strpos($v$val) === 0) $v = $val;//如果恒等于0,即居于句首,说明是该衍生词具有该词根  
  37.             }  
  38.         }  
  39.         //把数组转换成字符串  
  40.         $replace_sentence = implode(' '$sentence_array);  
  41.         return $replace_sentence;  
  42.     }  
  43.   
  44.   
  45.     //根据元素长度进行降序的冒泡排序算法  
  46.     function maopao($dict){  
  47.         if(!is_array($dict) || count($dict) < 1) return '参数不对!';  
  48.         for($i=0;$i<count($dict)-1;$i++ ){         
  49.             for($j=0;$j<count($dict)-1-$i;$j++){   
  50.                 if(strlen($dict[$j]) < strlen($dict[$j+1])){  
  51.                     $tmp = $dict[$j];  
  52.                     $dict[$j] = $dict[$j+1];  
  53.                     $dict[$j+1] = $tmp;  
  54.                 }   
  55.             }  
  56.         }  
  57.         return $dict;  
  58.     }  


运行截图:


你可能感兴趣的:(杂谈,互联网名企面试题)