dongmi1221 2014-07-03 21:14
浏览 59
已采纳

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

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 21: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条)

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器