What is an algorithm
An algorithm is defined as a step-by-step procedure or method for solving a problem. Let us consider the problem of preparing a bajji. To prepare a bajji, we follow the given below steps given:
1) Get the frying pan.
2) Get the oil. a. Do we have oil? i. If yes, put it in the pan. ii. If no, do we want to buy oil? 1. If yes, then go out and buy. 2. If no, we can terminate.
3) Turn on the stove, etc...
What we are doing is, for a given problem (preparing a bajji), we are providing a step-by-step procedure for solving it.
While defining an algorithm steps are written in human understandable language and independent of any programming language. We can implement it in any programming language of our choice. From the data structure point of view, following are some important categories of algorithms:
1. Sort - Algorithm to sort items in a certain order (Either Ascending/Descending order).
2. Search - Algorithm to search an item in a data structure.
3. Insert - Algorithm to insert item in a data structure.
4. Update - Algorithm to update an existing item in a data structure.
5. Delete - Algorithm to delete an existing item from a data structure.
Characteristics of an Algorithm
Not all procedures can be called an algorithm. An algorithm should have the following characteristics
1. Unambiguous - Algorithm should be clear and unambiguous. Each of its steps and their inputs/outputs should be clear and must lead to only one meaning.
2. Effectiveness - An algorithm is also generally expected to be effective. This means that all of the operations to be performed in the algorithm must be sufficiently basic that they can in principle be done exactly and in a finite length of time.
3. Input - An algorithm should have zero () or more well-defined inputs.
4. Output - An algorithm should have 1 or more well-defined outputs and should match the desired output.
5. Finiteness - Algorithms must terminate after a finite number of steps.
6. Feasibility - Should be feasible with the available resources.
7. Independent - An algorithm should have step-by-step directions, which should be independent of any programming code.
How to Write an Algorithm?
There are no well-defined standards or rules for writing algorithms. Rather, it is problem and resource dependent. Algorithms are never written to support a particular programming code. As we know that all programming languages share basic code constructs like loops (do, for, while), flow-control (if-else), etc. These common constructs can be used to write an algorithm.
Quora |