A computer algorithm is any set of instructions that a computer could use to produce a result. An example would be "given a numeric input, multiply that value by 9, divide the result by 5, then add 32." This is how a Celsius temperature is converted into Fahrenheit.
Chat with our AI personalities
WHAT'S AN ALGORITHM? SHORT ANSWER
An algorithm is just a 'plain text english' statement way of writing out a program; without having to resort to using any 'specific programming language code'. For example,...
====
CONCLUSION
As you can see from the above examples which use 'different' programming languages to solve the same task with, namely:
-> QBASIC
-> VBScript
-> Javascript
-> Python
-> etc.
...once you've already gone and created the plain text english language based 'algorithm' to solve a particular problem; then, that 'one' same algorithm, can be readily re-used, over again and again...in conjunction with almost 'any' programming language code...to solve what are, in fact, similar problems.
An algorithm is just about any method used to solve a problem. Common algorithms include the methods taught in school to add, subtract, multiply and divide numbers with pencil and paper.
an algorithm is a well defined set of instrictions for completing a task. Example, car will not start, is battery flat...no, it there petrol...no, get petrol. will it start now...yes
4d + 7 = -15
Example of a stream cipher
It is an algorithm used by another algorithm as part of the second algorithm's operation.As an example, an algorithm for finding the median value in a list of numbers might include sorting the numbers as a sub-algorithm: There are plenty of algorithms for sorting, and the specifics of the sorting does not matter to the "median value" algorithm, only that the numbers are sorted when the sub-algorithm is done.For what an algorithm is, see related link.
Kruskal's algorithm is an algorithm in graph theory that finds a minimum spanning tree for a connected weighted graph. This means it finds a subset of the edges that forms a tree that includes every vertex, where the total weight of all the edges in the tree is minimized. If the graph is not connected, then it finds a minimum spanning forest (a minimum spanning tree for each connected component). Kruskal's algorithm is an example of a greedy algorithm.
It is a class of algorithms that are fine-tuned towards making the best out of a distributed computing ( similar to cloud computing ) environment. A very good example of such an algorithm is MapReduce (see wikipedia).