Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
5answers
1k views

Which tournament managment software for web-based tournaments? [closed]

This is possibly borderline for stackoverflow, as it's not a direct programming question. But, I am looking for a suitable software as a starting point from which to continue programming my desired ...
6
votes
3answers
1k views

Data structure for Double Elmination Tournament

I am in the process of converting my Tournament Organizer software, which allows the creation and manipulation of Double Elimination Tournaments, to use the MVVM design pattern so that it can be more ...
2
votes
1answer
57 views

How to determinate round by element in tree (Tournament brackets)?

Assume we have following tree: 1 9 2 13 3 10 4 15 5 11 6 14 7 12 8 Where elements(matches): 1-8 is round 1 9-12 is round 2 13-14 is round 3 15 is ...
2
votes
3answers
156 views

Tournament bracket placement algorithm

Given a list of opponent seeds (for example seeds 1 to 16), I'm trying to write an algorithm that will result in the top seed playing the lowest seed in that round, the 2nd seed playing the 2nd-lowest ...
2
votes
1answer
361 views

Recursive Algorithm for Tournament Brackets

I am creating a tournament bracket creation script, and I am getting stuck with tournaments with the number of players Non - Power of 2. For instance, it is currently working great for 2, 4, 8, 16, ...
2
votes
3answers
548 views

Any Tournament APIs out there?

Are there any APIs for helping running tournaments that can draw brackets, count scores, etc? Something on PHP/javascript would be nice but I can't find any. Thanks.
1
vote
1answer
147 views

PHP Tournament Bracket System

Happy new year to all!! I'm trying to make starcraft 2 tournament web site for me and friends. i stuck on tournament system. I have a jquery script that makes a bracket but I couldn't figure out ...
1
vote
3answers
123 views

Is there a known algorithm for scheduling tournament matchups?

Just wondering if there is a tournament scheduling algorithm already out there that I could use or even adapt slightly. Here are my requirements: A variable number of opponents belonging to a ...
1
vote
2answers
3k views

Drawing a tournament bracket (CSS/HTML based on PHP Dataset)

If you're not familiar with what I mean by tournament bracket, see here: http://baseballguru.com/bracket1.gif That said, I have built the dataset and figured out the number of rounds ...
1
vote
1answer
392 views

Modelling tournament brackets in MongoDB

I've been experimenting with MongoDB in order to move some parts of an app to it. I'm thinking a document-based db like mongodb would be a nice fit for tournament brackets but I'm having sort of a ...
1
vote
3answers
1k views

Multiple Iterations of Tournament Selection in Genetic Algorithm

Hey guys, I'm a bit confused about how multiple iterations of the tournament selection works. I know you start selecting random pairs (or k members) and putting the winner into a mating pool. You ...
1
vote
1answer
703 views

Tournament graph question(s)

Is a tournament graph the same thing as a directed complete graph? And, do all vertices in a tournament graph have the same number of edges?
0
votes
0answers
23 views

Swiss Pairing algorithm, including a check

So far to date I've tried to find a way to implement Swiss pairing algorithms within a programming language such as PHP and Visual Basic.NET. I've gotten so far referred to the following post: Help ...
0
votes
1answer
69 views

Tournament bracket with user input (php?)

Basically I would like some help on how to implement my idea. Any direction would be appreciated. I'm not sure what languages I should be using, or if I need a MySQL database of some kind. I want to ...
0
votes
0answers
68 views

How can I build a complex polymorphic association which includes ActiveResource classes?

I'm attempting to build a diverse tournament management system which allows multiple types of tournament bracket backends. The goal is to provide a very simple option for the tournament bracket ...
0
votes
0answers
49 views

Multiplying values during a permutation to get the percentages of winning

There is a tournament. 11 player at the beginning starting with 1000 points. 4 players left: (5000,3000,2000,1000) is their actual point-count. Only the first three people will get a share of the ...
0
votes
1answer
89 views

Graph Theory - Rankings in a Tournament

Given a tournament graph like this : How do you find out how many rankings there are systematically? Help / explanation would really be appreciated.
0
votes
0answers
34 views

How to offer Practice And Tournament Modes in my game?

I'm developing a turn-based Android game. I'm contemplating offering two modes for my game - a practice mode where users can familiarize themselves and a tournament mode where they would actually play ...
0
votes
0answers
14 views

How to keep virtual competition (in games) strong? [closed]

I have developed a mobile game, in which people can post their results online in a virtual tournament. The game has been published over a year ago, and I had some players with some truly remarkable ...
0
votes
2answers
63 views

How can I derive the winners of a match from a table of games that relate to a table of matches?

In a database that stores tournaments I have this relational structure to store matches and their games: EER Diagram When a match is created, a match row and multiple game rows are inserted ...
0
votes
2answers
164 views

C# - Recommended SDK/Toolkit(s) For Drawing Tournament Bracket

I would like to develop a UI for creating/displaying single elimination brackets in C#. The only problem is, I am not a UI developer and I don't really know if there is a particular ...
0
votes
1answer
163 views

Listview, Webview or ? to create a tournament draw

I am wondering what the best way to render a tournament draw (scrollable) might be for Android. Since I am new to this, I was not sure whether to invest time creating a ListView sort of thing or ...
0
votes
1answer
606 views

Algorithm to calculate the number of matches in Swiss system tournament

I need to calculate the number of matches in a Swiss system tournament, is there any library in php that can help me?
0
votes
2answers
695 views

dominating set of a tournament graph

I am writing an algorithm to find the dominating set of a tournament graph. Is the minimum spanning tree of a directed graph equivalent to the dominating set of the graph? In other words, if I find ...
-1
votes
0answers
53 views

Round-Robin group tournament generation

Lets assume we have following variables: total_teams - Count of participating teams in tournament teams_in_group - How many teams may group contain teams - just array of placeholders for data We ...
-3
votes
2answers
65 views

PHP Tournament Bracket [closed]

I need to write php tournament system with bracket. Like in ESL web site. the php should draw the bracket if for example there are 4 players there should be 2 round. but I don't know how can start ...