What does the quote "Level of Indirection solves every Problem" mean in Computer Science?

link|improve this question

0% accept rate
2  
This sounds like a homework assignment. – Onorio Catenacci Nov 14 '08 at 1:46
feedback

5 Answers

Generally it means that by increasing the level of abstraction one can make the problem easier to understand/resolve.

Be careful with your abstractions though, the full quote at least as I heard it is, "You can solve every problem with another level of indirection, except for the problem of too many levels of indirection".

link|improve this answer
Good advice. I routinely work with highly abstract problems and like to describe abstraction as a big lever where you push on the small end: small changes result in large motions, but at the expense that you must push really hard. – BCS Nov 13 '08 at 23:02
2  
That's not the full quote; it's a corrected version someone else came up with after the fact. It's right, though. – Mason Wheeler Apr 29 '09 at 12:02
feedback

From the book Beautiful Code:

All problems in computer science can be solved by another level of indirection," is a famous quote attributed to Butler Lampson, the scientist who in 1972 envisioned the modern personal computer.

Although this is contradicted by Wikipedia who attributes the phrase to David Wheeler.

link|improve this answer
4  
At the end of the chapter, the book mentions that Lampson attributes the quote to David Wheeler, so Wikipedia isn't really contradicting it, just following the indirection, if you will :), to the source. – jw013 Jan 5 at 16:19
feedback

Such a very important concept and so few answers here. Generally every problem presented can be solved not necessarily by direct code adjustments but applying some proxy (forget the pattern definition) in some form. The interception &| instrumentation of events is highly undervalued.

link|improve this answer
feedback

We use indirection when we use a pointer to a value instead of a value directly in our code!

link|improve this answer
feedback

It basically means that you should break your problem into smaller problems until the problems are easy to solve.

You break the problem into several layers :

  • routines that solve the problem
  • They call : routines that understand the problem space
  • They call : routines that do small steps (load a file, twiddle some bits, write an output).

The routines at the top (the problem solving ones) are indirected / abstracted from the actual means of solving the problem, making them more flexible to solve the same problem a slightly different way later.

link|improve this answer
Why the downvote? – jv42 Apr 28 '11 at 11:52
feedback

Your Answer

 
or
required, but never shown

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