Search Results

3
votes

Solving the NP-complete problem in XKCD

Even though knapsack is NP Complete, it is a very special problem: the usual dynamic program for it is in fact excellent (http …
1
vote

Running Time of Random Sort

The average case is indeed O( N N!): Observe that there are exactly N! permutations of N elements. The probability of picking the right one is exactly 1/N!. Hence, by the strong law of larg …
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. …