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 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?