0
votes
Find the shortest path in a graph which visits certain nodes.
Andrew Top has the right idea:
1) Djikstra's Algorithm
2) Some TSP heuristic.
I recommend the Lin-Kernighan heuristic: it's one of the best known for any NP Complete problem. The on …
2
votes
What is an NP-complete problem?
The definitions for NP complete problems above is correct, but I thought I might wax lyrical about their philosophical importance as nobody has addressed that issue yet.
Almost all complex …
0
votes
Knowing the plaintext, how to discover the encryption scheme used?
I think it's a misconception that XOR is an easily decryptable scheme. The theoretically strongest form of encryption is a one-time pad: simply a string of predetermined bits which you xor your pla …
2
votes
How to find the kth largest element in an unsorted array of length n in O(n)?
If you want a true O(n) algorithm, as opposed to O(kn) or something like that, then you should use quickselect (it's basically quicksort where you throw out the partition that you're not interested …
1
vote
Resource on computing time complexity of algorithms
Guys, you're all recommending true complexity theory books -- Arora and Barak contains all sorts of things like PCP, Interactive Proofs, Quantum Computing and topics on Expander graphs -- things th …
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.
…
