>  기사  >  백엔드 개발  >  오늘 직장에서 ThoughtWorks 면접 질문을 발견했는데 공유해보겠습니다

오늘 직장에서 ThoughtWorks 면접 질문을 발견했는데 공유해보겠습니다

WBOY
WBOY원래의
2016-07-25 08:48:141415검색
可以接受任意多个特殊数(不包含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);
复制代码


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.