4
votes
Algorithm for best suiting people’s choices from a definite list of items where there is only one of each available?
For each person, create two virtual people, a "giver" and a "receiver". Now match the set of givers against the set of receivers using the Gale Shapley Algorithm. Runs in O(n^2) time.
…
