当前位置:Gxlcms > PHP教程 > 今天上班发现一个ThoughtWorks的面试题,分享一下

今天上班发现一个ThoughtWorks的面试题,分享一下

时间:2021-07-01 10:21:17 帮助过:123人阅读

可以接受任意多个特殊数(不包含0),在任意数字范围内输出(1~xxx)
其实还可以用策略模式吧算法独立出来 针对这个题目就先不写了 (偷懒~~)
  1. class FizzBuzzWhizz{
  2. private $_special=array();
  3. private $_words=array();
  4. public function __construct(array $special,array $words){
  5. if(in_array(0,$special)){
  6. exit('特殊数中不能含有0');
  7. }
  8. $this->_special=$special;
  9. $this->_words=$words;
  10. }
  11. public function run($num){
  12. $output='';
  13. for($i=1;$i<=$num;$i++){
  14. $output.=$this->_calculate($i);
  15. }
  16. echo $output;
  17. exit();
  18. }
  19. private function _calculate($number){
  20. $str='';
  21. if(strpos($number,$this->_special[0]) > 0){
  22. return $this->_words[0]."
    ";
  23. }
  24. foreach($this->_special as $k=>$v){
  25. if($number%$v === 0){
  26. $str.=$this->_words[$k];
  27. }
  28. }
  29. return $str==''?$number.'
    ': $str.'
    ';
  30. }
  31. }
  32. $special=array(3,5,7);
  33. $words=array('Fizz','Buzz','Whizz');
  34. $obj=new FizzBuzzWhizz($special,$words);
  35. $obj->run(100);

人气教程排行