与PHP匹配卡

时间:2013-09-13 17:23:09

标签: php math match

有一个非常流行的程序(我忘了名字),它生成三角形,每边都有一个问题或答案,每个三角形组合在一起,使得一个三角形上的答案与另一个三角形上的问题相匹配,当正确组合它会产生更大的形状(通常是正六边形)。

我正在尝试编写一个脚本,其中$t是一个包含卡片的2D数组:

$t = array();

// $t['1'] represents the 'center' triangle in this basic example
$t['1'] = array(
    '1', // One side of T1, which is an answer
    '3-1', // Another side, this is a question
    '2+1' // Final side, another question
);

// These cards go around the outside of the center card
$t['2'] = array(
    '2-1' // This is a question on one side of T2, the other sides are blank
);
$t['3'] = array(
    '2' // This is an answer on one side of T3, the other sides are blank
);
$t['4'] = array(
    '3' // This is an answer on one side of T4, the other sides are blank
);

现在需要做的是,例如,“T1-S1与T2匹配,T1-S2与T3匹配,T1-S3与T4匹配”。我已经尝试了,到目前为止我所拥有的是:

foreach ($t as $array) {
    foreach ($array as $row) {
        $i = 0;
        while ($i <= 4) {
            if(in_array($row, $t[$i])){
                echo $row . ' matches with triangle ' . $i . '<br />';
            }
            $i++;
        }
    }
}

注意:上面的代码是一个简化版本,其中所有问题都已“解决”,而且它只是匹配双方。

运行我的代码后,我得到了这个输出:

1 matches with triangle 1
1 matches with triangle 2
2 matches with triangle 1
2 matches with triangle 3
3 matches with triangle 1
3 matches with triangle 4
1 matches with triangle 1
1 matches with triangle 2
2 matches with triangle 1
2 matches with triangle 3
3 matches with triangle 1
3 matches with triangle 4

问题是,$row只告诉我三角形的边,而不是实际的三角形。所以我的问题是:

如何使我的脚本工作,以便输出“Ta-Sb与Tc-Sd匹配”,其中a是三角形,b是边,c是与之匹配的三角形,d是它匹配的一面,假设在每个数组中,边的值是按顺序的吗?

我希望这个问题很清楚,但是随时可以提出任何问题。

另外,理想情况下,一旦匹配Ta-Sb with Tc-Sd,就不应与Tc-Sd with Ta-Sb匹配。这也可能吗?

2 个答案:

答案 0 :(得分:1)

我发现使用对象而不是数组来处理这些类型的问题更容易。记住每个阵列级别的含义以及它们如何排列太复杂了。所以我可能会这样做:

<?
// I say Polygon instead of triangle because ideally the logic should scale for squares, octagons, anything! But start with triangles of course.
class Polygon{ 
  var $Sides = array(); // Side objects - there should be 3 of them for a triangle
  var $matches = array(); // holds the ids of the matching polygonn - keys line up with $Sides

  function __construct(){
    $Sides[0] = new Side();
    $Sides[1] = new Side();
    $Sides[2] = new Side();
  }

}

class Side{
  var $Question; // Question object
  var $state; // 'q' or 'a' - does this side show the question or answer?

  function __construct(){
    $Question = new Question();
  }

}

class Question{
  var $id; // database id of the question
  var $question;
  var $answer;
}
?>

填充:

<?php

$Triangle[0]=new Polygon();
$Triangle[0]->Side[0]->Question->id=1;
$Triangle[0]->Side[0]->Question->question='Yo momma serves more requests than what?';
$Triangle[0]->Side[0]->Question->answer='HTTP';
$Triangle[0]->Side[0]->state='q'; // This side shows the question
$Triangle[0]->matches[0]= 4; // Side 0 of this triangle matches a side of triangle 4

// write a loop that does this for all triangles using whatever your logic is for matching them up

?>

现在,您可以通过以下方式轻松了解您正在处理的三角形,边形,问题或匹配:

$ Polygon [2] - &gt; Sides [1] - &gt; state(表示该三角形的一侧应显示答案而不是问题)

$ Polygon [0] - &gt; Sides [3] - &gt; Question-&gt; id(会保留问题ID)

$ Polygon [1] - &gt;匹配[2](将保持与多边形1的第2边匹配的三角形的键)

如果你不熟悉对象,它可能感觉像是一个飞跃,但这是一个非常简单的方法,你可以像对待美化数组一样对待它们,而忘记对象现在可以做的所有其他东西。 / p>

在用值填充它们之后 - 为了获得匹配,您只需循环遍历每个Polygon并输出您需要的任何内容。

希望这有帮助!

答案 1 :(得分:0)

这有帮助吗?

foreach ($t as $ti => $array) {
    foreach ($array as $ri => $row) {
        $i = 0;
        while ($i <= 4) {
            if(in_array($row, $t[$i])){
                echo $row.' '.$ti.' '.$ri.' matches with triangle ' . $i . '<br />';
            }
            $i++;
        }
    }
}