I'm studying time complexity in school and our main focus seems to be on polynomial time O(n^c)
algorithms and quasi-linear time O(nlog(n))
algorithms with the occasional exponential time O(c^n)
algorithm as an example of run-time perspective. However, dealing with larger time complexities was never covered.
I would like to see an example problem with an algorithmic solution that runs in factorial time O(n!)
. The algorithm may be a naive approach to solve a problem but cannot be artificially bloated to run in factorial time.
Extra street-cred if the factorial time algorithm is the best known algorithm to solve the problem.
Here is a simple example with Big O( n! ):
This is in python 3.4
List all permutations of an array is O(n!). Below is a recursive implementation using the swap method. The recursion is inside the for loop and the elements in the array are swapped in position until no more elements remain. As you can see from the result count, the number of elements in the array is n!. Each permutation is an operation and there are n! operations.
Traveling Salesman has a naive solution that's O(n!), but it has a dynamic programming solution that's O(n^2 * 2^n)
Generate all the permutations of a list
You have
n!
lists, so you cannot achieve better efficiency thanO(n!)
.