Algorithm and Flowchart
Algorithm and Flowchart
FLOWCHARTS
(Source code),
Code: refers to statements that are written in
any programming
language as machine code or C code.
Code is some time interchangeably used with
program.
2
Program design
Problem
Algorithm
Program
Algorithms
An algorithm is a finite set of steps defining
Algorithm Vs Program
What is the difference between an algorithm and a
program?
a program is an implementation of an algorithm to
be run on a specific computer and operating system.
an algorithm is more abstract it does not deal with
machine specific details think of it as a method to
solve a problem.
What is good algorithm?
Efficient algorithms are good, we generally measure
efficiency of an algorithm on the basis of:
1.Time: algorithm should take minimum time to execute.
2.Space: algorithm should use less memory.
Algorithm Specification
Every algorithm must satisfy the
following criteria:
Input. Zero or more quantities are externally
supplied.
Output. At least one quantity is produced.
Definiteness. Each instruction must be clear and
unambiguous(Unique meaning).
Finiteness. An algorithm terminates in a finite
number of steps.
Effectiveness. Every instruction must be basic
enough to be carried out than, means not so
complex.
7
Pseudo code
Pseudocode is one of the methods that could be used to
represent an algorithm.
It is not written in a specific syntax that is used by a
programming language and therefore cannot be
executed in a computer.
There are lots of formats used for writing pseudocodes
and most of them borrow some of the structures from
popular programming languages such as C, Lisp,
FORTRAN, etc.
Also, natural language is used in Pseudocode when
presenting details that are not important.
Most of the algorithms are presented using pseudocode
since they can be read and understood using
programmers who are familiar with different
programming languages.
Some programming constructs used for Pseudo Code
READ, PRINT, SET, INITIALISE, INCREMENT, IF THEN ENDIF, IF
8
10
11
12
ALGORITHM
REPRESENTATION
13
Example 1
Writeanalgorithmthatfindstheaverageof
twonumbers
Solution:
AverageOfTwo
Input: Two numbers
1. Add the two numbers
2. Divide the result by 2
3. Return the result by step 2 2
End
14
Example 2
Writeanalgorithmtochangeanumeric
gradetoapass/failgrade.
Solution:
1.
2.
15
Pass/FailGrade
Input: One number
if (the number is greater than or equal to 40)
then
1.1 Set the grade to pass
else
1.2 Set the grade to fail
End if
Return the grade
End
Example 3
WriteanalgorithmforgradingSystemof
JUET.
Marksrange
>=80
>=70 & <80
>=60 & <70
>=50 & <60
<50
16
Grade
A
B
C
D
F
Solution
AlgoForGrade
Input: One number
1. if (the number is between 80 and 100, inclusive)
then
1.1 Set the grade to A
End if
2. if (the number is between 70 and 79, inclusive)
then
2.1 Set the grade to B
End if
Continues on the next slide
17
18
Example 5
Writeanalgorithmtofindthelargestof1000numbers.
Solution
FindLargest
Input: 1000 positive integers
1.
2.
3.
4.
19
Set Largest to 0
Set Counter to 0
while (Counter less than 1000)
3.1 if (the integer is greater than Largest)
then
3.1.1 Set Largest to the value of the integer
End if
3.2 Increment Counter
End while
Return Largest
End
Flowchart
A graphical representation of an
algorithm, often used in the design
phase of programming to work out the
logical flow of a program.
Visual way to represent the information flow
Make our logic more clear
Help during writing of program
Make testing and debugging easy
20
21
Flowchart or program
constructs
Flowchart Constructs
23
24
25
Example-1
Write an algorithm and draw a
flowchart that will read the two
sides of a rectangle and calculate
its area.
Algorithm
Step 1: Take Width and Length as input
Step 2: Calculate Area by Width*
Length
Step 3: Print Area.
Example-1
Pseudocode
Step 1: Input W,L
Step 2: A L x W
Step 3: Print A
START
Input
W, L
LxW
Print
A
STOP
Example-2
Write an Pseudocode and draw a
28
Example-2
START
Input
M1,M2,M3,M4
AVG(M1+M2+M3+M4)/4
IS
AVG<50
Print
PASS
Print
FAIL
STOP
Example 3
Write an algorithm and draw a flowchart to
Example 3
Pseudocode
Step 1: Input Lft
Step 2: Lcm Lft x 30
Step 3: Print Lcm
Flowchart
START
Input
Lft
Lcm
Lft x 30
Print
Lcm
STOP
Example 4
Write an algorithm and draw a flowchart
b 2 4ac
Hint: d = sqrt (
Example 4
Algorithm:
quadratic equation
Calculate d
Calculate x1
Calculate x2
Print x1 and x2
START
Example 4
Input
a, b, c
Pseudocode:
Step 1:
Step 2:
Step 3:
Step 4:
Step 5:
Input a, b, c
d sqrtb ( b 4 a c
x1 (b + d) / (2 x a)
x2 (b d) / (2 x a)
Print x1, x2
sqrt(b x b 4 x a x c)
x1
(b + d) / (2 x a)
X2
(b d) / (2 x a)
Print
x1 ,x2
STOP
Example 5
Write an algorithm that reads three
Example 5
Step 1: Input
N1, N2, N3
Step 2: if (N1>N2) then
if (N1>N3) then
MAX N1
//[N1>N2, N1>N3]
else
MAX N3
//[N3>N1>N2]
endif
else
if (N2>N3) then
MAX N2
//[N2>N1, N2>N3]
else
MAX N3 //[N3>N2>N1]
endif
endif
Step 3: Print The largest number is, MAX
many pages
Costly to draw flow charts for large program
Difficult to modify
37