My problem is a minimization problem. Students are to be matched to University at a
minimised cost.
so i started by constrcting a struct. Please i will like to know if i am on the right path.
Here is my code
Code:
struct universities
{
string name;
int places_left;
double average_grade;
}
university<universities>university_list;
struct students
{
int id;
double my_average_grade;
universities choice[6];
universities average_grade;
}
student<students>student_list;
struct matching_student{
universities match;
students matchd;
}matching;
Thanks a lot in advance


