dongmi1221 2014-07-03 13:14
浏览 60
已采纳

如何在给定范围内的多维数组中搜索最大值

I have a multidimensional $array that has a lot of various values. I am trying to get the maximum value in a given range in this case lets say the maximum value within x1,y0 and x2,y7, thus the result would be 6 using the data below.

It seems like a common problem for searching within coordinates in multidimensional array... but I cant find a simple solution and everything that I try to do seems to be rather extensive in the coding. I was wondering if there is a function that would allow me to search in this array using my criteria in an efficient way.

$array[0][0] = 1;
$array[0][1] = 10;
$array[0][3] = 3;
$array[1[0] = 1;
$array[1][1] = 1;
$array[2][5] = 6;
  • 写回答

3条回答 默认 最新

  • doujing9972 2014-07-03 13:20
    关注
    $array[0][0] = 1;
    $array[0][1] = 10;
    $array[0][3] = 3;
    $array[1][0] = 1;
    $array[1][1] = 1;
    $array[2][5] = 6;
    
    $max = false;
    $x1 = 1; $x2 = 2;
    $y1 = 0; $y2 = 7;
    
    foreach($array as $x => $y_vals) {    
        if($x < $x1 || $x > $x2)
            continue;
    
        foreach($y_vals as $y => $val) {
            if($y < $y1 || $y > $y2)
                continue;
    
            if(false === $max || $max < $val)
                $max = $val;
        }
    }
    
    print $max; //6
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部