How do you differentiate between an algorithm and a method? Why dont we call Newton's Method or Ford-Faulkerson method Algorithms? What are a properties of a good algorithm and what qualifies a method as an algorithm?
|
4
|
|||||
|
|
|
There is no technical difference between the term "method" as in "Newton's method" and "algorithm." EDIT: On reflection, perhaps Pete is correct that algorithms terminate and methods may not (who am I to argue with Knuth?) However, I don't think that's a distinction that most people will make based only on your use of one word or the other. |
||||||||
|
|
|
I think it is just because the origin domain of algorithm. If the inventor is in computer science background, he may prefer called algorithm. In the domain of math and other sciences, they may prefer called method. |
||
|
|
|
|
In the context you state (Newton's method, etc.) there is no essential difference between an algorithm and a method. Both are sets step-by-step instructions for solving a problem. In the Wikipedia article on Newton's Method, it states "The algorithm is first in the class of Householder's methods, succeeded by Halley's method". The boundary is blurry at best. In computer science an algorithm still is a step-by-step manner towards solving a problem - an implementation-agnostic set of steps. A method commonly refers to a chunk of code associated with a class or object that does some task - it can implement many algorithms potentially. |
||
|
|
|
|
EDIT: I'm going to reverse my opinion here and say that I think Pete Kirkham has it right. |
||||||
|
|
|
In my opinion, a method is a more general concept than algorithm and can be more or less anything, e.g. writing data to a file. Just about anything that should happen due to an event or to some logical expression. Also, the meaning of the words "method" and "algorithm" can vary depending on in what context they are used. They might be used to describe the same thing. |
||||||||||||
|
|
|
In general programming speak, algorithms are the steps by which a task is accomplished. According to Wikipedia,
In computer science, a method or function is part of the Object-Oriented philosophy to programming where programs are made out of classes that contains methods/functions to perform specific tasks. Once again, quoting Wikipedia
In short, the algorithm are the steps by which we do something such as turning a light bulb on: 1) Walk to switch 2) Flip Switch 3) Electrons Flow 4) Light generated Methods are where we actually code actions inside a class. |
||||||
|
|
|
Well, for the etymology-lovers http://www.etymonline.com/index.php?search=algorithm+method&searchmode=or |
||
|
|
|
|
Algorithms terminate in a finite number of steps.
The Newton Raphson method is not guaranteed to converge, not does it detect convergence failure. If you wrap the method up with convergence detection and termination at a finite epsilon or after a finite number of steps, you get an algorithm. |
|||
|
|
|
|
Regarding the Ford-Faulkerson Method, CLRS calls it method rather than algorithm because "it encompasses several implementation with different running time"[pp 651. 2nd editon] |
||
|
|
