0
votes
1answer
241 views

How to calculate the Round Robin Waiting Times for Multi-Core CPUs

I have a question on multi-cores & multi-Cpu RR simulation; I am trying to understand how the WTime is derived for a multi-core and mulit-CPU RoundRobin Simulation Algorithm. I am trying to ...
0
votes
5answers
192 views

Python Weighted Random

I need to return different values based on a weighted round-robin such that 1 in 20 gets A, 1 in 20 gets B, and the rest go to C. So: A => 5% B => 5% C => 90% Here's a basic version that ...
0
votes
1answer
171 views

Big-O of Round Robin (RR) and Weighted (WRR)

As I am implementing a simple load balancing service, I think Big-O is a key factor for it's future performance and scalability. But I could find no reference regarding the big-O of both algorithms ...
2
votes
1answer
216 views

Balanced Pool of Away and Home Games Algorithm

I have an algorithm that creates a round robin tournament using the Balanced Algorithm , which creates for a pool size of four the following games. 1-2 Round 1 3-4 Round 1 1-3 Round 2 2-4 Round 2 1-4 ...
1
vote
2answers
808 views

round robin implementation

A computer processor is given N tasks to perform (1 ≤ N ≤ 50,000). The i-th task requires Ti seconds of processing time (1 ≤ Ti ≤ 1,000,000,000). The processor runs the tasks as follows: each task is ...
0
votes
1answer
404 views

algorithm scheduling, round robin tournament with multi teams / game

The round robin tournament algorithm works fine when only to teams meet per game. But how does one implement it for tournaments of sports or games where more then two teams meet in the same game. For ...
1
vote
1answer
358 views

Algorithm for resource assignment in round robin modeled processor scheduling

Background: I have independent tasks shown as dataflow graphs (which iterate forever). Extremely simple example: task 1: b1 -> c task 2: e -> b2 Processor assignment is given. ...
2
votes
4answers
722 views

What's the quickest way to find all possible pairs in list?

Basically I have list of players, and I want to pair them up so that each player will play everyone once. What's the quickest way to find this data?
5
votes
5answers
7k views

Round Robin Tournament algorithm in C#

I am having some trouble to achieve this little round robin project. What i try to do is to generate a preview calendar of games then I want to output; day 1: Team 1 vs Team 2; Team 3 vs Team 4; ...