douju6651 2016-06-07 11:52
浏览 114

PHP:具有3个值/键的字典的简单数据结构

I have a list of triangles each traingle has an id, perimeter and area.

I need to implement functions to find triangle in the list based on one of the parameters (id or perimeter or area).

The question is how to store the list in this case? I am looking for something simple, which will make these functions small.

I tried to use

$triangleList[$id] = [$area,$perimeter];

for each triangle to build assoc. array. But now a can't easily find the triangle based on area or perimeter (must use foreach, in_array is not enough).

Is there a simple way to do that?

  • 写回答

2条回答 默认 最新

  • douhuan3448 2016-06-07 11:59
    关注

    Say you are looking for triangle with area=2 for example,

    $subset = array_reduce($triangleList, function ($carry, $item) {
        if ($item['area'] == 2) {
            $carry[] = $item;
        }
    }, array());
    
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度