·您现在的位置: 云翼网络 >> 文章中心 >> 网站建设 >> 网站建设开发 >> php网站开发 >> 面试题之算法集锦

面试题之算法集锦

作者:佚名      php网站开发编辑:admin      更新时间:2022-07-23
  1. 有字符串A,B,求取AB字符串中都含有的字符,例如:①A="hello",B="jeesite",那么输出"e",②A="common",B="month",则输出"mno",输出串的顺序没有要求.
思路1:
把A去重得到A1,B去重得到B1,然后对A1,B1分别进行排序,然后遍历较短的字符串的每个字符是否存在于较长的字符串中,存在则输出
问题:
1.思路很简单,基本大家都会这么考虑,但是面试的时候就没有亮点了
思路2:
假设AB串只包含小写(其实无所谓),那么创建一个数组,数组的key为a->z,value都是0;
<?php
    function stringToChar($str,$num=1,$tmp=null){
        if(empty($tmp)){
$tmp=array('a'=>0,'b'=>0,'c'=>0,'d'=>0,'e'=>0,'f'=>0,'g'=>0,'h'=>0,'i'=>0,'j'=>0,'k'=>0,'l'=>0,'m'=>0,'n'=>0,'o'=>0,'p'=>0,'q'=>0,'r'=>0,'s'=>0,'t'=>0,'u'=>0,'v'=>0,'w'=>0,'x'=>0,'y'=>0,'z'=>0);
        }
        $arr_temp=str_split($str,1);
        foreach($arr_temp as $v){
            if($tmp[$v]<$num){
                $tmp[$v]+=$num;
            }
        }
        return $tmp;
    }
    function getStringIntersect($str1, $str2){
        $temp=stringToChar($str1,1);
        //$str2的$num用2 就是为了区分 stemp中的原来的1 是 $str1中设置的
        $temp=stringToChar($str2,2,$temp);
        $result='';
        foreach ($temp as $key => $value) {
            if($value===3){
                $result.=$key;
            }
        }
        return $result;
    }
    $A="common";//"hello";
    $B="month";//"jeesite";
    $result=getStringIntersect($A, $B);
    echo $result;
?>
今天随便浏览网页的时候又发现了这篇文章(一次谷歌面试趣事)
我想起来了 思路二出自这篇文章。