Search Results

1
vote

Explaining computational complexity theory

very much simplified: A problem is NP-hard if the only way to solve it is by enumerating all possible answers and checking each one. …
4
votes

Minimizing the sum of a special function over a list

"Sorting" is usually defined using a binary comparison operator ("less-than-or-equal"). What you are looking for is the "best" permutation of a list, where "best" is defined as a criterion that is …
0
votes

Searching algorithm

You might optimize you search by observing that your collection's length must be a multiple of your pattern length. If your collection has a size that is prime, the only possible pattern length is …
1
vote

Optimization! - What is it? How is it done?

Optimizing a program means: make it run faster The only way of making the program faster is making it do less: find an algorithm tha …