|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Algorithm required
I am in the process of developing a website where users can roster their associations sporting schedules or fixtures.
I have been trying to develop a simple algorithm that assists with this process and not being strongly math orientated, I can tell you my head hurts! My problem is best simplified as follows: Given say, 4 entities, I need to be able to calculate each entity playing the remaining three others once without any duplications. This needs to repeat until all possible pairings have been exhausted. E.g. Entities A, B, C, D First run - AB, CD Second run - AC, BD Third run - AD, BC Of course the amount of entities needs to be variable. Any help with this would be greatly appreciated. Regards Hebbs |
|
#2
|
||||
|
||||
|
not sure if this what you're after but ...
this is an example in javascript that will take an array of elements (such as the alphabet) and sort it into an array of pairs without any duplicates... Code:
<html>
<head>
<title>pairs</title>
</head>
<body>
<script language="javascript" type="text/javascript">
// give an array of elems [a...z] sort into pairs without any duplicates. [[a,b],[a,c]...[y,z]]
function pairs(elements) {
pairs = new Array();
var pointer = 1;
for (k=0;k<elements.length;k++) {
for (j=pointer;j<elements.length;j++) pairs[pairs.length] = [elements[k],elements[j]];
pointer++;
}
for (x=0;x<pairs.length;x++) document.writeln(pairs[x][0]+"-"+pairs[x][1]+"<br>");
}
testArray = ['a','b','c','d','e','f','g','h','i','j','k','l','m',
'n','o','p','q','r','s','t','u','v','w','x','y','z'];
pairs(testArray);
</script>
</body>
</html>
The trick is to maintain a "pointer" variable and increment it after each pass through the nested loop. Hope I got it right for you. |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > Software Design > Algorithm required |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|