01 - CSC 201 - Algorithms
01 - CSC 201 - Algorithms
INTRODUCTION
We usually use the term computerisation to indicate the use of computers to develop software in
order to automate any routine human task efficiently. Computers are used for solving various day-
to-day problems, and thus problem-solving is an essential skill that a computer science student should
know. It is pertinent to mention that computers themselves cannot solve a problem. We should give
precise step-by-step instructions to solve the problem. Thus, the success of a computer in solving a
problem depends on how correctly and precisely we define the problem, design a solution
(algorithm) and implement the solution (program) using a programming language. Thus, problem-
solving is the process of identifying a problem, developing an algorithm for the identified problem
and finally implementing the algorithm to develop a computer program.
When problems are straightforward and easy, we can easily find the solution. But a complex
problem requires a methodical approach to find the right solution. In other words, we have to apply
problem-solving techniques. Problem-solving begins with the precise identification of the problem
and ends with a complete working solution in terms of a program or software.
1. Understanding the problem: Carefully read the problem to understand what needs to be
accomplished. Assess your background skills in the area under consideration to know if
you have to acquire more skills in other to solve the problem. Visualise the final-result and
use it as a guide in determining the validity of your solution and the result that will be
obtained. Identify the known and the unknown (variables). Check the data and the
conditions that need to be satisfied. Check to know if the condition is sufficient to determine
the unknown. Split the problem into parts and write down the parts.
2. Device a plan: Check to see if there is a link between the data and the unknown (variable),
if there is no link then try using auxiliary problem. Check if a similar problem exists so you
can adapt the solution instead of reinventing the wheel. After all, the outcome of this phase
is the plan of the solution.
3. Carrying out the plan: In carrying out the plan, you have to go through the steps to
know if they are correct and ascertain if there is any missing link. Check if the correctness
of the plan can be proved. If the plan does not work correctly, discard it and try another
plan.
4. Looking Back: This is the moment of reflection. This is the phase where you can crosscheck
what you have done to arrive at the present stage. In this phase, you can ascertain what
worked and what did not work. This is the time your argument and results are verified
for correctness and consistency. In this phase, you can check if the solution can be applied
to other problems. At this point, you can also ascertain if you can still get the same result
using different methods.
CONCEPTS OF ALGORITHM
In our day-to-day life, we perform activities by following a certain sequence of steps. Problem-
solving goes through a sequence of steps which involves the abstraction and decomposition of a
large amount of problem into smaller manageable subtasks that can be handled independently.
An algorithm is important in the planning and execution of a problem solution since it specifies the
sequence of steps needed to carry out the instructions that will lead to the overall result. An
algorithm can be defined as a sequential set of instructions that are followed in other to solve
a problem using a finite amount of data in a finite amount of time. More than one algorithm
can be written for a particular problem (see Figure 1.0), but the choice of selecting a particular
algorithm in place of the other is dependent on the following factors: reliability, accuracy, ease
of modification, and time required for the execution when converted to a high- level language.
Such a roadmap is nothing but the algorithm, which is the building block of a computer program.
For example, searching using a search engine, sending a message, finding a word in a document,
booking a taxi through an app, performing online banking, and playing computer games all are
based on algorithms.
Writing an algorithm is mostly considered the first step in programming. Once we have an algorithm
to solve a problem, we can write a computer program to give instructions to the computer in a high-
level language. If the algorithm is correct, the computer will run the program correctly every time.
So, the purpose of using an algorithm is to increase the reliability, accuracy and efficiency of
obtaining solutions.
• Input: This represents the data that is to be sent for processing in the system. Most algorithms
provide some variables and a description of the data that the variable will handle.
• Processing: This is the action performed on data in other to produce the desired result—such
actions as computation, selection, iteration, etc.
• Output: This is the result produced after the data has been processed. When the algorithm
has been converted to programs, the data is usually displayed through the output device, for
example, the monitor.
Properties of Algorithm
a. Input/output: The algorithm should be able to produce output value(s) when given a set
of specified input value(s). There should be a relationship between the input and the output
produced by the algorithm.
b. Finiteness: An algorithm should be able to terminate after a finite number of instructions
must have been processed. That means it does not have to take forever to process a set
of instructions.
c. Definiteness: The algorithm should be developed in a form that each step will be precise
and easy to understand.
d. Effectiveness: This means that the algorithm should be in a form that will be easy to
convert to a programming statement in a finite amount of time.
e. Generality: The algorithm should be able to produce the same output when given different
types of valid data (i.e. data taken from a specified domain).
Solution
Step 1: Start
Step 2: Ask the user to give you the base and height of the triangle
Step 3: Calculate the product of the values (i.e. base and height)
Step 4: Divide the product in step 3 by 2
Step 5: Display the area you got in Step 4
Step 6: Stop
• Pseudo Code: This type of expression has a form that is closely related to a programming
language though there is no restriction on the syntax. It is not ambiguous like the natural
language.
Example 1.2: Write an algorithm to calculate the area of a triangle (area = ½ *
base * height)
Solution:
Step 1: Start
Step 2: Read base and height
Step 3: Product = base x height
Step 4: Area = product/2
Step 5: Print Area
Step 6: Stop
• Flow chart: Uses symbols to represent the sequence of instructions. It is not ambiguous
like the natural language, but the modification is done using a specialized tool. In
addition, the implementation uses a standard rule.
Example 1.1: Draw a flowchart to calculate the area of a triangle (area = ½ * base *
height)
Solution:
Table 1.0. Shapes or symbols to draw flow charts
Flowchart Symbol Function Description
Start/End Also called “Terminator” symbol. It indicates where
the flow starts and ends.
Top-Down Design
The most common problem-solving approach that is used among humans is divide and conquer,which
means dividing a large problem into smaller parts that can be solved independently. This is the
concept used in Top-Down Design.
Top-down design, which is also called functional decomposition, is a problem-solving methodology
that involves splitting a large problem into smaller manageable parts that can be solved
independently and integrated to form the overall solution. The problems in a top-down design are
arranged in a hierarchical tree structure (structured chart), consisting of problems or sub-problems
called modules.
A module is a self-contained set of steps needed for the solution of a problem. The modules are
arranged in a hierarchy from top to bottom in a structure chart. The module at the top is the main
problem, while the ones at the bottom are a sub-division of the problem. The modules are numbered
according to their position in the hierarchy; those in the same level are given the same number. The
numbering starts from the top, which is usually zero, down to the bottom, which can be any finite
number, depending on the problem.
The reason for the division of the problems into modules, parts, or segments is to reduce the
complexity of the problem by s u b d i v i d i n g them into smaller, manageable independent parts.
In the context of computer science, the responsibility of the module depends on the requirement of
the problem. Some of the module(s) could be responsible for data input, some may perform
processing of data, which may involve; mathematical, logical or relational operation, while some
may be responsible for the output.
As an example, let us refer to Figure 2.1. The figure is a hierarchical tree structure (structured chart)
that consists of three levels (levels 0, 1, 2, and 3). The top level, or level 0, describes the function of
the overall problem. It is the abstract step because the problems at this level can further be
decomposed into smaller sub-problems in the levels that follow. The last module at the bottom (i.e.
the module at level 3) that cannot be decomposed any further is called the concrete step. Refer to
case study II for a detailed example of top-down design methodology.
• Write the main module - Restate the problem in English or pseudo code form and
put it as the main module in a structured chart. Decompose the module into sub-
modules and put them in the levels below the parent or top module; that is, if
the module has too many functions or if the sentence is too long. Put the whole
modules in a logical sequence if there is a need for that, and defer the detail until
you get to the lowest module. Give each module a concise and meaningful name.
• Write the Remaining Modules - Continue breaking down the module until you
have gotten to the lowest level, where you will provide all the necessary details.
This level is called the concrete step. That is the level you provide all the necessary
details. You can extend the number of levels to any length of your choice
(depending on the problem), as you are not limited to any number of modules or
levels. However, the sequence should terminate after a finite number of steps.
• Re-Sequence and Revise as Necessary - Check if there is a need for change
or even to drop the solution if you discover that your plan is not solving the
problem. Try to refine the problem wherever necessary and try to be clear, simple
and direct.
Implementations strategies
Earlier, we introduced general problem-solving strategies using Polya’s approach. In this section,
we are going to limit our conversation to a computer-based problem-solving strategy. Problem-
solving is an activity undertaken in every programming or software development environment, so it
is indispensable knowledge needed by every programmer or software developer. Problem-solving
is not just limited to computer scientists, or programmers, it is also used by business students, engineers
and scientists though in a different way. In business studies, students use the systems approach, while
in engineering and science, engineers and scientists use engineering and scientific methods,
respectively. The programmers, on the other hand, use the software development approach, and
that is going to be our topic of discussion in this section. The software development methods are
as follows:
Example 2.1:
Given the three sides and height of a triangle, calculate in centimetres the area and
perimeter of the triangle.
• Problem Input
Three sides (side 1, side 2, side 3) of the triangle (in centimetres)
Height (h) of the triangle (in centimetres)
• Problem Output
Area of the triangle
Perimeter of the triangle
THE PROBLEM
You have been entrusted with the job of weather forecasting, and you have a device that can only
read temperature in Celsius and you are expected to report in Fahrenheit. Write a program to
convert every Celsius temperature reading recorded by your device to Fahrenheit.
ANALYSIS
The first thing to do is to understand what is expected of you in the problem. The problem says that
you will be getting the Celsius temperature from your device, which will be converted to Fahrenheit.
Therefore, the input is Celsius and the output is Fahrenheit. In this phase, we equally need to
ascertain the relationship between the input and the output. This can be established using the
formula.
DATA REQUIREMENT
• Required Input
• Required Output
• Required Formulas
DESIGN
The next step will be to formulate the algorithm by listing the sequence of steps needed to execute
the problem. Such steps are listed below:
ALGORITHM
Step 1: Start
Step 2: Read Celsius Temperature
Step 3: Convert Celsius to Fahrenheit
Step 4: Print Fahrenheit
Step 5: Stop
To convey meaning and enhance better clarity, we have to refine some steps as follows:
o Step 1 refinement
Step 1: Read Celsius Temperature
1.1: Write “Enter Celsius Temperature” 1.2:
Read Celsius temperature
Step 2 refinement
Step 2: Convert Celsius to Fahrenheit
2.1: Fahrenheit = (Celsius * 9/2) + 32
IMPLEMENTATION
The next step now is to convert every step of the algorithm to a valid programming statement using
C++ language. To write the program, we need to state the kind of input (data) to be collected. In
this case, we will use decimal numbers (i.e. float). We will also identify the data in the memory
(declare variable) with the names Celsius and Fahrenheit. Then we will proceed with the statement
that will execute the algorithm that does the conversion from Celsius to Fahrenheit.
Below is the C++ program of the above algorithm. The program uses a comment to explain the
program statements. A detailed explanation of the program will be in the next class.
/*
*/
/* conversion constants */
return 0;
Enter the Celsius temperature value and press enter key when done >> 20
The Fahrenheit equivalent of
20.00 degree Celsius is 68.00
TESTING
Testing the program means verifying that the program will give the required output when given
a set of valid input data. You have to test the program by supplying it with a set of valid input
data and examining the data carefully to know if it corresponds with the intended output. To be
sure that the program is behaving well, you have to test it with variable input sets. In some cases,
you might have to test how the program will behave if given some unrelated input values. This has
to be ascertained so that the program will not crash when someone mistakenly puts some unrelated
input value(s).
USE CASE II: Volume calculation
THE PROBLEM
Given the radius and height of a cylinder, calculate the volume.
ANALYSIS
From the problem, we can deduce that the solution will require two inputs - radius and height of the
cylinder, then one output will be required which is the volume. The input values will be of float
(fractional) type, since the constant pie is of decimal type, which will change the integer variable to
be of fractional type. The relationship that exist between the variables (i.e. the input and output)
will be listed subsequently.
DATA REQUIREMENT
• Required Constant
PI 3.14 /* the value of the constant PI */
• Required Input
Radius /* the radius of the cylinder */ Height /* the height of the
cylinder */
• Required Output
Volume /* the volume of the cylinder */
• Required Formulas
Area = PI * Radius * Radius Volume = Area * Height
DESIGN
/*
* program to calculate the volume of a cylinder
*/
/* Calculate volume */
/* Print volume */
TESTING
The same explanation is given in case study I still holds here, so you can refer to testing in case study
I for a review.
Exercises
Algorithm questions
1. Write an algorithm to calculate simple interest
2. Write an algorithm to calculate the area of a triangle
3. Write an algorithm to find the largest of three numbers x, y, z
4. Write an algorithm to test if a given integer value is prime or not
Programming questions
1. Write a C++ program to calculate simple interest
2. Write a C++ program to calculate the area of the triangle
3. Write a C++ program to find the largest of three numbers x, y, z
4. Write a C++ program to test if a given integer value is prime or not