美文网首页
php二维数组查找

php二维数组查找

作者: kkgokk | 来源:发表于2018-06-25 11:47 被阅读0次

    function find(target,array){
    row = count(array);
    col = count(array[0]);
    for(i = 0,j = col-1;true;){ if(array[i][j] == target){ return 1; }else if(array[i][j] > target &&j > 0){
    j--; }else if(array[i][j] < target &&i < row-1){i++;
    }else if( i ==row-1 && array[i][j] <target ){
    return 0;
    }else if(j == 0 &&array[i][j] > $target){
    return 0;
    }
    }
    }

    字符串空格替换

    function replaceSpace(str) { // write code herestr_array = str_split(str);rstr = '';
    foreach(str_array ass){
    if(s == ' '){rstr .= '%20';
    }else{
    rstr .=s;
    }
    }
    return $rstr;
    }

    相关文章

      网友评论

          本文标题:php二维数组查找

          本文链接:https://www.haomeiwen.com/subject/zazeyftx.html