vote up 1 vote down star
1

Hello,

for a long time I have been thinking: Does it really help to know algorithms in a real programming environment? I ask this because I have many friends who don't know any and still are good programmers. How did they learn to think logically and know good ways to implement stuff? As an example, let's take "Introduction to Algorithms" (MIT text book): Does it really improve thinking and solving problems in a real programming environment? I don't see any positive sides of learning them. Please share your opinions and correct me if I am wrong :)

flag

6  
Are you sure your friends who don't know any algorithms are really good programmers? Are you good enough yourself to judge if people are good or bad programmers? ;) – freiksenet Sep 22 at 10:08
1  
I judge it by practical stuff they do. Anything they were tasked to do it will be done fine. One thing comes to mind why they do so its because they read documentation, forums and etc. So they get information fast and they don't need to have any knowledge of algorithms. They just implement what is written there :) – faya Sep 22 at 10:13
9  
So basically they copy-paste others code really well? – freiksenet Sep 22 at 10:15
They try to understand what is implemented there and after trying to write their way. I mean code isn't exactly as it is ref's they read :) Is it copy paste? – faya Sep 22 at 10:20
It is good to know how to reuse and learn from other's people code. But not all code other people write is good and good knowledge of algorithms is a prerequisite to the skill of judging which code is bad and which code is good. – freiksenet Sep 22 at 10:23
show 1 more comment

closed as subjective and argumentative by Sinan Ünür, AraK, silky, John Topley, SilentGhost Sep 22 at 11:43

12 Answers

vote up 18 vote down check

Here's my take on this whole issue (background: I've been programming for a few years and am on the verge of completing a CS degree).

Knowing specific algorithms from a study book is not going to directly help you, since almost all of them will be implemented. And, let's face it, even a very experienced programmer will, for basic algorithmic needs, turn to algorithms that have been written by pros.

Having said that, here are some benefits to learning algorithms:

  1. They help you understand complexity - You can probably get the basic idea of what it means to be O(n) vs O(n^2) without a whole course, but this will definitely get you to learn more complex situations and their trade offs. This knowledge actually is very important.
  2. They help you understand data-structures - Even though premature optimization is bad, many real-life situations will (eventually) require you to understand how to tweak things for speed. In many cases, knowing the difference between using a hash, using a list, etc. is critical.
  3. They help you understand running-time/memory trade-offs - In most situations, there's a trade-off between the running time and the memory used. This is, IMO, incredibly important, as it turns up even in the most basic of examples (how to store stuff in a DB, etc.) This is the kind of knowledge that you can have intuitively, but is better to explicitly acknowledge.
  4. They will introduce you to important concepts you might miss - For example, since I learned about memoization, I've seen so many places where it crops up (and not just in programming).

Note: A lot of these points are based on the two courses in algorithms I took at the Uni, I assume most places teach the same ideas.

link|flag
I missed all algorithms course at Uni. Stupidly young... Now I want to catch up.. So asking is it worth studying it :) – faya Sep 22 at 10:27
as i didn't what memoization is even if i use it a lot, here's the definition en.wikipedia.org/wiki/Memoization – Quamis Sep 22 at 11:44
Thanks, added the link to the original port. – Edan Maor Sep 22 at 12:02
vote up 8 vote down

"I don't see any positive side of learning them."

If you don't know much, you'll be given simple jobs at which you can succeed without knowing much. The "copy and paste from examples" programmers -- who don't get algorithms or data structures -- never become architects or are allowed to do anything interesting.

"Does it really improve thinking and solving problems in real programming environment?"

Yes.

Every time someone tries to write an O(n^2) loop, I find them a better algorithm that isn't O(n^2).

link|flag
I was going to query that last assertion. Then realised that in the case where no algorithm exists that's O(better than n^2), they wouldn't have tried to write an O(n^2) loop. They'd have tried to write an O(n^3) loop ;-) – Steve 'onebyone' Jessop Sep 22 at 11:26
@onebyone: In the few cases where I've seen O(n^3) -- or worse -- I was so baffled by what they were trying to accomplish that I insisted on scrapping their whole approach. In a few cases it was database views which depended on other database views; it couldn't be optimized and resulted in massive O(n^2*m^2) operations. The nested views had to be discarded and the data structure redone from the ground up. – S.Lott Sep 22 at 11:54
@ S. Lott: Just a couple days ago I wrote an O(n^3) algorithm and if you insisted on scrapping it, I'd have thought you were insane. My point is, there are many real world things that can't be done better than O(n^2) or O(n^3). So if every time you see a O(n^2) loop you can rewrite it to have a lower time complexity, the only thing that indicates is that you are working with incompetents. – ejspencer Sep 22 at 19:49
Or that he has a quantum computer. – Steve 'onebyone' Jessop Sep 23 at 1:10
@ejspencer: If you studied algorithms, and could prove it was optimal, that would confirm my answer to the question. Studying algorithms made it possible for you to prove it was optimal. My point was not that all O(n^3) algorithms are bad. My point was that I regularly have to do that kind of analysis. As do you. – S.Lott Sep 23 at 1:35
vote up 7 vote down

Read this

http://www.joelonsoftware.com/articles/fog0000000319.html

link|flag
Wish I could do more than just +1... – peSHIr Sep 22 at 12:02
vote up 6 vote down

Without knowing much about algorithms you could (you really shouldn't - explanation follows) write the following in C++:

size_t countSpaces( const char* where )
{
    size_t count = 0;
    for( size_t i = 0; i < strlen( where ); i++ ) {
        if( where[i] == ' ' ) {
            count++;
        }
    }
}

It works but it has O(n^2) complexity ("What does it have??? Who cares? Lets' go dring beer." - would one ask. Give the above code a long enough string and enjoy its unnecessarily poor performance.

The problem in the above snippet is strlen is called in a loop and scans through the string on each iteration. Compare that to seemingly the same code:

size_t countSpaces( const char* where )
{
    size_t count = 0;
    const size_t length = strlen( where );
    for( size_t i = 0; i < length; i++ ) {
        if( where[i] == ' ' ) {
            count++;
        }
    }
}

Looks the same but is much better. However one needs to give a thought to the difference.

link|flag
please add a "don't do this" comment to the code: ! ;) – Mitch Wheat Sep 22 at 10:12
Exactly you can write it as you get first idea how you will do it:) – faya Sep 22 at 10:14
I've seen in production code List.GetAt(index) while iterating the list. – Nick D Sep 22 at 10:17
+1 for adding the improvised code too. – Guru Sep 22 at 10:23
2  
@faya: You really don't get it. When you call vector::size() method in a loop it's not such a problem - yes, it can add some overhead but it will be the same independent of the vector length. In this specific case strlen() will consume time proportional to the string length. So it will work very fast for short strings but surprisingly slow for longer ones. That's Big-O. – sharptooth Sep 22 at 10:37
show 5 more comments
vote up 5 vote down

Understanding algorithms is not just for when you need to implement some esoteric graph traversal. You understand algorithms so you know how to use the common data structures built into modern languages.

Is a List adequate for a set of strings, or do you often do lookups? If so, should you use a tree or some kind of hash set? Is a linked list adequate, or do you need a hash table? What columns of an SQL table should have an index on them?

These everyday questions cannot be answered without a good understanding of algorithms.

link|flag
vote up 3 vote down

There is lot of knowledge in learning algorithms. You can proceed without knowing algorithms, but, how will you be sure what your problem is already solved some where else?

It will be like re-inventing the wheel again.

There is saying, learn from others mistakes, because you will never have enough time to commit all of them.

link|flag
+1 Great advice, although I've never heard this saying before. – ejspencer Sep 22 at 19:56
vote up 2 vote down

It really depends on what kind of code you want to be writing. If you are doing a lot of data processing, I cannot imagine someone being a good programmer without knowing some basic algorithms, some knowledge of algorithmic complexity, etc. Maybe other tasks need less algorithmics but knowing what's going on will still help.

To answer your questions: yes, knowing algorithms will help.

link|flag
vote up 2 vote down

A study of algorithms certainly isn't a prequisite for a good programmer, but perhaps the formal study of algorithms would help improve programming ability.

link|flag
vote up 2 vote down

It's the classic "why do a CS degree if I'm only going to learn theory and not get stuck into some proper development?"

Sure you may never reach the point where you think "Ooh I'll use that algorithm I learnt in class 5 years ago", but it's about getting into that logical mindset. If you know what makes an algorithm fast, and what makes one slow, you'll start writing more performant code, for example.

It's very easy to achieve 99% of coding tasks with just basic code structures, but if you want to be more effective, (and also solve the other 1%), it's all good stuff to know.

link|flag
vote up 2 vote down

Basically every program is an algorithm, thus every programmer knows at least a bit about algorithms. I'll divide your question into two:

Must every programmer be familiar with well-known "advanced" algorithms?

Today - Not all kinds of programming require deep understanding of "advanced" Algorithms, today we are experiencing more and more good libraries, in which the algorithms and data-structures are hidden within, allowing the end-programmer to puzzle-like attach the pieces, thus an extensive part of the end-programmer job, is to understand how to attach those pieces, not necessarily to write a full-scale algorithm.

If the end-programmer is mostly wiring up pieces from libraries, knowing this is worth-while, but may not be obligated.

However a big part of a program may be the algorithm itself - such as in the field of DSP,3D etc'. in those fields you really should know "advanced" algorithms, if you want your program to succeed. that is, you'll want to know what is known so you can use it, on what to not spend time when you have a dead-line (polynomially solve NP problems) and how to approach a new problem.

Why should every programmer be familiar with the principles of algorithms?

Even if the end-programmer is mostly wiring up pieces from libraries, and there is less room for smart algorithms. a poor programmer may well damage the stability and speed of good libraries. For example the Big O notation, is important because where it may not be seen on some small tests, there is a difference between a program that runs in O(n^n) compared to a program that runs in O(n).

Also it is important to remember that the term 'algorithms' often goes hand to hand with the term Data Structures - such as the case in the book you've mentioned, and every programmer should be familiar with the very basic yet extremely useful concepts of organizing the program data, that is to know the concepts of arrays, linked lists, binary trees, etc'.

To conclude -

Principles of algorithms and basic data structures - a must.

Familiarity with well-known "advanced" algorithms - recommended to many, a must for some.

link|flag
vote up 1 vote down

I would say that - that algorthms are just ways in which you get to code not only better (since most of them have been around while and the really stupid mistakes have been ironed out), they help you think about a problem in less time and get to a better solution.

Why try and create a solution for a problem, when a good solution already exists?

You will see a massive amount of time here (SO) and on the net around algorithms and the log(n) and the issues around them and how simple it is to produce such issues.

Also they help in understanding what other “software” is doing – trees and databases for example. This is also similar to the discussion around using OO and Patterns and Anti Pattern etc.

Learning “Stuff” helps you not repeat the mistakes that have been made in the past

And low and behold this very question here on SO http://stackoverflow.com/questions/1442568/how-can-i-write-a-program-to-generate-a-sorting-decision-tree

link|flag
vote up 0 vote down

Assume you're developing a bus route management system. You want to store routes data into a database. A given route is associated to a bus but each route can have multiple buses. How do you define your table structure to hold this data.

If you don't have a good hand on algorithms .. dealing with his kind of real world problem will be very tough.

link|flag

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