vote up -1 vote down star
2

While I write an algorithm, I may not come know that this is some special kind of algorithm strategy which is developed earlier and named as xxxx or whatever.

I'll try to illustrate my point: Brute-force search or exhaustive search, also known as generate and test, is a trivial but very general problem-solving technique that consists of systematically enumerating all possible candidates for the solution and checking whether each candidate satisfies the problem's statement.-By wikipedia.

There must be such algorithmic strategies which are being used or at least known to you.

Please share such strategies if you know some.(And if you think it is worth sharing :)

EDIT -I'm adding something more to the question after its not a "real question" as suggested by some of you. As MAK and Nali4Freedom are suggesting, I am looking forward for some suggestions for good algorithm books.

So,what good algorithm books you would suggest?

(Still you can suggest some really good algorithmic strategies,though)

flag
I have tried my best to frame my question.Still if you need some edits please suggest so. – Ravi Oct 29 at 18:53
Uh, there are entire (really big) books written on this topic. I don't think you will find a simple list of answers. – jeffamaphone Oct 29 at 18:54
Not a real question + subjective + should be wiki... c'mon! – Seb Oct 29 at 18:59
1  
By the way, If I had asked "which is best algorithm strategy you know" or something like that, then it would be called subjective and argumentative. And how its not a real question that you only know. – Ravi Oct 29 at 19:05
1  
To get a good start on this, look at the three volume set by Knuth. – James Black Oct 29 at 19:07

7 Answers

vote up 2 vote down check

See for example the wikipedia Algorithm - By design paradigm entry.

link|flag
1  
+1 very good link. – pierr Nov 3 at 1:15
1  
This is kinda answer I was looking for.Thanks. – Ravi Nov 3 at 8:17
vote up 0 vote down

You could also check out Algorithmics: The Spirit of Computing by David Harel and Yishai Feldman.

link|flag
vote up 1 vote down

Will probably give you a decent set of methods for solving any problem. There isn't much benefit in providing a finer grained list.

link|flag
+1 For Monte Carlo.That is totally new for me. – Ravi Nov 3 at 8:20
vote up 1 vote down

"Introduction to Algorithms" was the textbook for my senior university course on Algorithm Design & Analysis which would have some more ideas possibly.

link|flag
vote up 2 vote down

Stop looking for a big list of algorithms. Its like asking for a list of all ideas anyone's ever had. Your best bet is to study a good book on algorithms. I would recommend Introduction to Algorithms by Cormen et. al. (frequently simply referred to as CLRS), but any good algorithms book should get you started.

link|flag
Thanks.Updated my question a bit. – Ravi Oct 29 at 19:17
vote up 4 vote down

See Knuth.

link|flag
IMPORTANT before purchasing!- "Some readers are put off by the use of assembly language, but Knuth considers this necessary because algorithms need to be in context in order for their speed and memory usage to be judged. This does, however, limit the accessibility of the book for many readers, and limits its usefulness as a "cookbook" for practicing programmers, who may not be familiar with assembly, or who may have no particular desire to translate assembly language code into a high-level language." – jdk Oct 29 at 19:13
vote up 1 vote down

Divide and Conquer is a very common and useful technique, merge sort being a good example. Dynamic Programming is another very useful one for problems that can be simplified into a series of sub-problems. I would suggest getting a good book on algorithms to really learn algorithm techniques well. I used this in my algorithms class and thought it was pretty good.

link|flag

Your Answer

Get an OpenID
or

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