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
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];
        }

Link to comment
Share on other sites

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>';

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.