danknessdra/RateMyProfessors.help

ranking of professors

Closed this issue · 2 comments

instead of getting GE requirements right now, we just get input of specific course, and rank professors based off course.

we can use a search algorithm to help rank professor.

right now we have a json of courses containing:
department
course
prof
ranking
num_of_ratings
difficulty

our input should be course name,
course name matches with course inside json file

for course that matches inside json file, add to a hashmap of the matched courses

each course will be a struct
hashmap will contain structs of courses, [key, value] [course, struct]

not sure about sorting/ranking

if we want to we can convert from array to hashmap [course name](linked list of structs)

still needs to work on ByRanking interface to also consider num of ratings inside sort