Possible Duplicate:
What algorithms should every developer know?
I know algorithm and data-structures are keys of software engineering but what are the must-know algorithms for a CS Graduate/Software Engineer working in the industry?
|
|
I know algorithm and data-structures are keys of software engineering but what are the must-know algorithms for a CS Graduate/Software Engineer working in the industry?
|
|||
|
|
closed as exact duplicate by chakrit, James Black, chaos, shoosh, ChssPly76 Oct 3 at 20:17 |
|
|
There really aren't any. It's all situational and depends on what sort of problems you're working on. The most broadly applicable algorithm I can think of is breadth-first search, and in plenty of jobs you can go years without touching anything that needs to use it or any of its relatives. What you really need to know is how to design an algorithm to solve a particular problem. |
||
|
|
|
|
In my humble opinion and experience, real world programming is ever less about writing algorithms and ever more about modelling systems and comprehending exactly what the question being asked actually is. Obviosly knowing your way around a bubble or a quick sort is a good thing, but it's not exactly something you're going to worry about every day. This is a consequence of the development of higher abstractions and solid frameworks, and this is how it should be really - after all how many times does a sorting algorithm really need to be written? |
||
|
|