I am doing designing an algorithm for an assignment, and I am not sure that I have written a correct algorithm, would you please guide me? The question is: There are n student S1, S2, …, Sn and and n grade: G1,G2,…Gn. Each student must be assigned to exactly one grade and exactly one student is assigned to any one grade. If Tij is the value of assigning Si to Gj, I must find the Q subset of T which is maximum. (I must assign workers to the best possible job) An example for this question is if I have two student S1 and S2 and also I have 2 Grades G1 and G2, I have for example the T12= 12, T21=7, T11=9, T22=16 the subset must be Q={T12, T22} I have written the following algorithm (in java) :
Algorithm studentG(J[],W[],V[][],x[][])
{
// I use heap data structure for solving this problem
// initial all x[][] = 0
ArrayList<Heap> students = new ArrayList<Heap>();
students = Heap(v[][]); // this method make a heap for each student,
for(int k = 0; k< J.length, k++)
{
Boolean test = false;
// this loop is for each student to assign each student to only one grade not more.
for(int m = 0; m< students.size(); m++)
{
If(students.get[m].root.getGrade() ==k && test == false){
test = true;
//I have assigned 1 to the feasible and 0 othrwise
x[m][k] = 1;
}else if(students.get[m].root. getGrade() != k){
Continue;
}else if(students.get[m].root. getGrade() == k && test == true){
students.get[m].remove(root);
students.get[m].heapify();
}
}
}
Does this work good? Thanks.