Jump to content

Which variables goes together?


yeltzin

Recommended Posts

Hi!

 

In an onlinegame there are teams that has played matches against each other, plenty of teams and they are divided in 16 groups, and i want to know what team's are in the same groups..

 

All the data is stored in mysql and it looks something like this :

 

Games played :

 

Round 1, Team A vs Team B

Round 1, Team C vs Team D

Round 1, Team E vs Team F

Round 1, Team G vs Team H

... and so on

.

Round 2, Team A vs Team E

Round 2, Team C vs Team G

Round 2, Team F vs Team B

Round 2, Team D vs Team H

... and so on

..

Round 3, ..... cont...

..

 

Now i see that team A,B,E, and F plays in the same group, and i want some way to make the script find these combinations for me..

 

Whats the best way to find out these groupings?

 

Link to comment
https://forums.phpfreaks.com/topic/276625-which-variables-goes-together/
Share on other sites

No need.. found a way.. :)

 

--------------------------

 

$k = 1;

        if ($group[$home] == "" && $group[$away] == "")
        {
            $group[$home] = $k;
            $group[$away] = $k;
            $k = $k + 1;
        }

        if ($group[$home] != "" && $group[$away] != "")
        {
            if ($group[$home] > $group[$away]) $group[$home] = $group[$away];
            if ($group[$home] < $group[$away]) $group[$away] = $group[$home];
        }

        if ($group[$home] != "" && $group[$away] == "")
        {
            $group[$away] = $group[$home];
        }

        if ($group[$home] == "" && $group[$away] != "")
        {
            $group[$home] = $group[$away];
        }

my 0.02 worth

 

$sql = "SELECT teama,teamb FROM matches
        ORDER BY teama, teamb";
$res = $mysqli->query($sql);
$preva = '';
$groups = array();
while (list($a, $b) = $res->fetch_row()) {
    if ($preva != $a) {
        if ($preva) {
            $inGroup = false;
            foreach ($groups as $teams) {
                if (in_array($a, $teams)) {
                    $inGroup = true;
                    break;
                }
            }
            if (!$inGroup) {
                $groups[$a] = array();
            }
        }
        else $groups[$a] = array();
        $preva = $a;
    }
    if (isset($groups[$a]))
        $groups[$a][] = $b;
}
echo '<pre>',print_r($groups, true),'</pre>';

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.