Tagged Questions
The round-robin tag has no wiki summary.
5
votes
5answers
3k 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;
...
3
votes
3answers
199 views
Implement Semi-Round-Robin file which can be expanded and saved on demand
Ok, that title is going to be a little bit confusing. Let me try to explain it a little bit better. I am building a logging program. The program will have 3 main states:
Write to a round-robin ...
2
votes
3answers
544 views
PHP Random Team Schedule Generator - Round Robin Scheduler
After getting negative feedback from asking this question in NEW question... here is my revised question. Yes it is the same project I am working on, but I was unclear that I needed to basically have ...
2
votes
2answers
272 views
Need help with logic, make three dimensional array (PHP)
I need help, example, i got array with 4 for team names there.
array('logiX.L4d22','Lust','Marat and Friends','Pandas of Belgium');
I want to make 3 dimensional array where first is a round, ...
2
votes
4answers
235 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?
2
votes
5answers
947 views
Python “round robin”
Given multiple (x,y) ordered pairs, I want to compare distances between each one of them.
So pretend I have a list of ordered pairs:
pairs = [a,b,c,d,e,f]
I have a function that takes two ordered ...
1
vote
1answer
292 views
Round Robin CPU Scheduling JAVA threads
I'm really having a hard time doing this Round Robin CPU scheduler. Our teacher asks us to do the simulation using threads but I don't know where or how to put it. I'm not good with Java but it's the ...
1
vote
1answer
111 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. ...
1
vote
2answers
863 views
Scheduling load with a round robin algorithm?
I need to write a round robin algorithm to schedule load to n endpoints?
So if I have servers A, B and C
I wanted to make sure to round-robin through them for each request I get. How do I do this in ...
1
vote
2answers
321 views
Round-robin assignment
I have a Customers table and would like to assign a Salesperson to each customer in a round-robin fashion.
Customers
--CustomerID
--FName
--SalespersonID
Salesperson
--SalespersonID
...
1
vote
4answers
721 views
Round Robin Assignment implementation (database)
I'm currently in the process of implementing a number of different assignment algorithms for a SalesLead <--> SalesPerson situation. The general idea is quite simple:
A SalesLead signs up on a ...
0
votes
0answers
24 views
How do i distribute round robin times equally?
I am trying to create a PHP function that automatically creates a round robin schedule
So far I have managed to create the part where each team is paired off for each round, probably not the most ...
0
votes
1answer
21 views
Does a context switch occur in a system whose ready queue has only one process and which uses round-robin scheduling?
Does a context switch occur in a system whose ready queue has only one process and which uses round-robin scheduling?
Assume that current cpu burst of the lone process spans more than one time-slice ...
0
votes
1answer
17 views
RoundRobin by Time Window
I'm looking for a system that stores timestamped values and remove automatically the ones that are older than specific time window.
Something like a RoundRobin system but, as long I understand, ...
0
votes
1answer
41 views
Roundrobin over changing set
I'd like to implement a simple round robin over a Python list or set that may be changed at runtime. The Problem is that I have a set of tasks that are to be executed in a round robin fashion, which ...
0
votes
1answer
153 views
Implementing the following RoundRobin scheduling code
I have to make a Round Robin scheduler for a class. I initially created 3 List<int> lists to represent the process ids, their arrival time and their processing time. I sorted them by their ...
0
votes
0answers
21 views
Can I discover all Round Robin DNS Record with dig?
I thought this was possible but cannot see which options for the "dig" command will output ALL round robin A records for a particular host name.
0
votes
2answers
56 views
on varnish, how can i see how many requests to each server are sent?
I'd like to see how many requests varnish is sending to each backend via round-robin director.
i haven't found out how so far. thanks for any idea
0
votes
1answer
152 views
JVM DNS cache and DNS round robin
How JVM DNS cache deals with DNS round robin?
Does it cache all ip adresses for domain and then rotates it or it caches one random ip address and then uses it for all future requests until cache ...
0
votes
1answer
56 views
I get some problems about the Round Robin Scheduling
Actually I am doing some self-study and I got stuck in calculating the waiting time of the RR scheduling.
Here is the slide about
RR Scheduling
I am confused by the "Queue" column, at time 6, what's ...
0
votes
1answer
284 views
Varnish - cache when cookies / sessions are supplied in round robin director
I am configuring varnish for the first time, and I have come across an issue which I haven't been able to find a complete answer for so far.
My config in a nutshell:
server0 - varnish,
be1 - apache,
...
0
votes
0answers
145 views
Round robin - scheduling scheme
Could anyone check if I've got this right (and if not explain where I've made mistake and why)?
This is a round robin scheme with 5 processes where:
P1 arrives at 0 at has service time 4
P2 arrives ...
0
votes
1answer
142 views
Round-robin scheduling and deadlock
Does round-robin scheduling ever cause deadlock? What happens if the CPU scheduling is based on round-robin and at one point in the schedule two different processes request the same file that no ...
0
votes
2answers
627 views
Using round robin algorithm to calculate time needed
Maybe someone out there is feeling friendly and would find this brain teaser interesting.. but I feel like maybe I started confusing myself.
The object of this is to calculate, using the round robin ...
-11
votes
0answers
150 views
implmenting round robin algorithm in C# [closed]
How can I implement the round robin cpu scheduling algorithm in C#?
I found some examples on Google, but all of them are in C/C++ (for example).
I need a simple and clean example, not a complex ...