码迷,mamicode.com
首页 > 编程语言 > 详细

面试题之算法集锦

时间:2015-08-21 13:18:41      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

  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;
?>

 

面试题之算法集锦

标签:

原文地址:http://www.cnblogs.com/draenei/p/4747455.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!