Algorithm - Introduction
Computers are used for problem solving, automating and processing of data and information. The computer does these, based on the instructions it receives through various programming languages such as C, C++ or a variety of others. The set of instructions given to the computer to perform a job is called a program which is nothing but an algorithm expressed in language known as programming language. Thus, writing a program requires knowledge of the programming language. However, the set of instructions can also be expressed independent of any programming language which is called algorithm. There are various explanations of algorithm. As per Dromey, "algorithm consists of a set of explicit and unambiguous finite steps which, when carried out for a given set of initial conditions, produce the corresponding output and terminate in a finite time."
To understand the concept of algorithm, let us consider a simple example of real life problem solving. To look for the meaning of a word from a dictionary, one wouldn't go to first word in the dictionary and search till the required word is found. An algorithm can be applied by taking advantage of alphabetical order of words in dictionary. The steps followed to search for a word are:
1) Go to page that has the starting letter of the word
2) Search for the subsequent letters till the exact word is found
This kind of algorithmic process can be used for problem solving using computers.
To obtain solution to a problem through the computer, usually we have to provide the computer program with input or data. The program then takes this input and manipulates it according to its instructions and eventually produces an output which represents the computer solution to the problem.
Representing Algorithms
Algorithms are written in a unique language and style. The way any language is used to write an algorithm is its representation. A natural language like English can be used to write algorithms. Let us take a simple problem of adding numbers from 1 to 'n' (that is if 'n'= 4, then it should add 1+2+3+4). If the algorithm is written for this problem in natural language, it would read as follows:
Initially set the sum value to 0 and count to 1. Accept 'n' as input from the user. If the value of 'n' is 0 then print the value of sum as 0. If the value is greater than 0 then add the count till it reaches the input
value 'n'. Each time after addition increase the count value.
It can be noticed that even for this small problem, the natural language is unstructured. In case of huge problem, the natural language algorithm will be difficult to understand while programming.
The next choice of writing the algorithm may be in formal languages like C, C++, etc. But, at the initial phase of design one would be thinking and writing at a highly abstract level. Using a programming language forces the use of punctuations and syntax properly which cannot be done at this early stage of design. The syntax of the algorithm should be free of the programming language.
A language between a natural and formal language is necessary to write algorithms efficiently. There is a notation called pseudo code which is most commonly used to write algorithms. It is simple, readable and has no grammatical rules. As it has a very well defined structure it is easy to visualize the organization of statements. As pseudo code resembles many of the programming languages, it is easy to convert the algorithm to programs.
Algorithm for the above problem in pseudo code is as follows:
Step 1 Initialize the variable Count to 1 for counting the addition.
Step 2 Initialize the variable Sum to 0 to store the sum.
Step 3 Get the input value 'Num' for number of times sum has to be performed.
Step 4 Add Count with Sum and assign it to Sum
Step 5 Increase Count to next value.
Step 6 Repeat steps 4 and 5 till Count exceeds the value of Num.
There are pseudo code constructs for three types of algorithmic operations viz. sequential, conditional and iterative.
Sequential Operations
A sequential instruction performs a single well defined task. When the task is finished, the algorithm moves on to the next operation.
In pseudo code computation, input and output are the basic sequential operations. The instructions performing computations look like;
Set value of "variable" to" arithmetic expression"
This operation says that, evaluate the "arithmetic operation" and store the result in the indicated" variable".
In our above example "Add Count with Sum and assign it to Sum" is the computational statement. Add count with Sum is arithmetic expression and assign it to Sum explains that the result has to be stored in the variable Total itself.
Eg of computational operations
Set the value of Area to (Ðr2)
Set the value of c to (a+b)
Input operations get the value from outside to the computational part. Input statement look like;
Get value for variable1, variable2
Eg. Get value of customer name, account_ number.
Output operations send the output value for display. This then looks like
Print value of variable1, variable2
Eg. Print the value of Area
Conditional Operations
The conditional statements allow the algorithm to ask a question and based on the answer, and perform certain set of operations through statements. Most commonly used conditional construct is if/then/else.
Take an example of displaying greater value among two input values. The algorithm for that is;
Step 1 Get value of 'a' and 'b'
Step 2 If 'a' is greater than 'b' then display 'a'
Step 3 If 'b' is greater then 'a' then display 'b'
The structure of steps 2 and 3 is as follows:
If a >b then
Display a
Else
Display b
So the algorithm can be written as:
Step 1 Get value of a and b
Step 2 If a >b then
In general, the structure of conditional operations appears as:
If true/false condition is true then
First set of operations
Next set of operations
Basically if/then/else operations allow selecting one or two alternatives.
Iterative Operations
Iterative operation is used to repeat a block of statements in many situations. In the earlier example of adding, n numbers requires adding each number from 1 to input value with previous sum.
Step 1 Initialise the variable Count to 1 for counting the addition.
Step 2 Initialise the variable Sum to 0 to store the sum.
Step 4 Repeat steps 5 and 6 till Count exceeds the value of Num.
Step 5 Add Count with Sum and assign it to Sum
Step 6 Increase Count to next value.
Step 4 above is a loop which will terminate when the count exceeds the value of input number. The statements under the loop are called body of the loop and condition is called termination condition. Most commonly used loop structure is while/do. The basic structure of while/do loop looks like this:
While true/false condition remains true do
operations
End of the loop
Examples
Let us consider the example of calculating the sum of square of first ten numbers
i = 1;
sum = 0;
while i <= 10
{
sum = sum + (i*i);
i = i+1;
}
Let us consider another example of a program for calculating factorial for a given number "n" as an example for iterative operation.
factorial()
int i, n;
int factor, nfactorial;
printf("Enter the number for which factorial should be
calculated :")
scanf("%d",&n)
for (i =1 ; i<=n;I++)
factor = I * factor;
nfactorial = factor;
printf(" Factorial value is : %d", nfactorial);
Here the factorial calculation is done for value from 1 to n iteratively.
ali
I need the solution to the second question only. How do i get it?
Epsi
WHAT IS THE SOLUTION
tutorsglobe.com antigenic variation assignment help-homework help by online non-toxic determinants of virulence tutors
tutorsglobe.com membrane transport assignment help-homework help by online cell membrane tutors
Precipitation Gravimetry tutorial all along with the key concepts of Solubility Considerations, How to obtain precipitate of high purity, Steps involved in Gravimetric Analysis, Preparation of the Solution, Precipitation, Filtration and Drying or igniting the precipitate
tutorsglobe.com clostridium botulinum assignment help-homework help by online medical bacteriology tutors
Theory and lecture notes of Nash Equilibrium all along with the key concepts of nash equilibrium, Battle of the Sexes, Mixed Strategies, market structure. Tutorsglobe offers homework help, assignment help and tutor’s assistance on nash equilibrium.
Carbohydrates tutorial all along with the key concepts of Classification of Carbohydrates, Monosaccharides, Configuration of Monosaccharides, Occurrence of Monosaccharides, Glucose, Physical Properties of Glucose, Fructose, Properties of Fructose, Structures of Fructose and Disaccharides
Theory and lecture notes of Difference between File system & DBMS all along with the key concepts of difference between file system & dbms, File System, DBMS, Advantages of DBMS, Functions of DBMS. Tutorsglobe offers homework help, assignment help and tutor’s assistance on Difference between File system & DBMS.
www.tutorsglobe.com offers tabular design notation homework help, assignment help, case study, writing homework help, online tutoring assistance by computer science tutors.
www.tutorsglobe.com offers reactions at the a-carbon homework help, reactions at the a-carbon assignment help, online tutoring assistance, organic chemistry solutions by online qualified tutor's help.
tutorsglobe.com aggregate fruit assignment help-homework help by online structure of fruit tutors
melting point determination tutorial all along with the key concepts of mel-temp operating instructions caution, experimental procedures, taking a melting point, mixture melting point, determination of the identity of an unknown
Transport Systems tutorial all along with the key concepts of Transport Systems in plants, Xylem, Phloem and Transport system in Animals
reflection and refraction of light tutorial all along with the key concepts of reflection of light at plane surfaces, refraction of light through rectangular glass block, idealization of waves as light rays
tutorsglobe.com phenol-coefficient technique assignment help-homework help by online control of microorganisms tutors
Avail our quality driven Modern Physics Assignment Help at best prices with 24x7 apt tutors to score maximum grades.
1956165
Questions Asked
3689
Tutors
1463887
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!