I'm looking for an intuitive, real-world example of a problem that takes (worst case) exponential time complexity to solve for a talk I am giving.

Here are examples for other time complexities I have come up with (many of them taken from this SO question):

  • O(1) - determining if a number is odd or even
  • O(log N) - finding a word in the dictionary (using binary search)
  • O(N) - reading a book
  • O(N log N) - sorting a deck of playing cards (using merge sort)
  • O(N^2) - checking if you have everything on your shopping list in your trolley
  • O(infinity) - tossing a coin until it lands on heads

Any ideas?

link|improve this question

70% accept rate
1  
Homework ಠ_ಠ or just casual interest? – ghayes Aug 14 '11 at 7:53
feedback

3 Answers

up vote 4 down vote accepted
  • O(10^N): trying to break a password by testing every possible combination (assuming numerical password of length N)

p.s. why is your last example is of complexity O(infinity) ? it's linear search O(N) .. there are less than 7 billion people in the world.

link|improve this answer
Because new people are born every second, so in the worst case you could search the world forever without ever finding anyone born on 1 January. I understand your point though, it's probably not the best example. – del Aug 14 '11 at 8:05
...and I have just changed the example in the question. – del Aug 14 '11 at 8:11
I see ... well, it makes sense because your problem size (number of people in the world) is infinitely increasing. – Aziz Aug 14 '11 at 8:13
feedback

The brute force solution of the traveling salesman problem is O(n!) which is approximately O(N^N)

link|improve this answer
A brute force on the TSP is factorial time, not exponential. Those are two different orders of complexity. – Vivien Barousse Aug 14 '11 at 8:01
I'm looking for a more intuitive everyday-type problem that a wider audience will understand. A lot of people are unfamiliar with the TSP (software developers included). – del Aug 14 '11 at 8:02
feedback

A brute-force and naive n-queens problem's solution.

You have to place n queens on a n*n board without them to be taken by others.

while there are untried configs, go to next solution and test it

Assuming every queen is on a given row, there are n possibilities for the queen to be placed and n for the (n-1) other queens (because duplicate rows are not checked).

Therefore, you've got a O(n^n) complexity

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.