• No results found

Basic Terminology

N/A
N/A
Protected

Academic year: 2020

Share "Basic Terminology"

Copied!
12
0
0

Loading.... (view fulltext now)

Full text

(1)

A data structure is a particular way of organizing data in a computer so that it

can be used effectively. The idea is to reduce the space and time complexities

of different tasks.

Basic Terminology

Data − Data are values or set of values.

Data Item − Data item refers to single unit of values.

Group Items − Data items that are divided into sub items are called as Group Items.

Elementary Items − Data items that cannot be divided are called as Elementary Items.

Attribute and Entity − An entity is that which contains certain attributes or properties, which may be assigned values.

Entity Set − Entities of similar attributes form an entity set.

Field − Field is a single elementary unit of information representing an attribute of an entity.

Record − Record is a collection of field values of a given entity.File − File is a collection of records of the entities in a given entity

set.

Algorithm is a step-by-step procedure, which defines a set of instructions to be executed in a certain order to get the desired output. Algorithms are generally created independent of underlying languages, i.e. an algorithm can be implemented in more than one programming language.

(2)

From the data structure point of view, following are some important categories of algorithms −

Search − Algorithm to search an item in a data structure.Sort − Algorithm to sort items in a certain order.

Insert − Algorithm to insert item in a data structure.

Update − Algorithm to update an existing item in a data structure.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 −

Unambiguous − Algorithm should be clear and unambiguous. Each of its steps (or phases), and their inputs/outputs should be clear and must lead to only one meaning.

Input − An algorithm should have 0 or more well-defined inputs.Output − An algorithm should have 1 or more well-defined

outputs, and should match the desired output.

Finiteness − Algorithms must terminate after a finite number of steps.

Feasibility − Should be feasible with the available resources.

Independent − An algorithm should have step-by-step directions, which should be independent of any programming code.

(3)

There are no well-defined standards 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.

We write algorithms in a step-by-step manner, but it is not always the case. Algorithm writing is a process and is executed after the problem domain is well-defined. That is, we should know the problem domain, for which we are designing a solution.

Example

Let's try to learn algorithm-writing by using an example.

Problem − Design an algorithm to add two numbers and display the result.

step 1 − START

step 2 − declare three integers a, b & c step 3 − define values of a & b

step 4 − add values of a & b

step 5 − store output of step 4 to c step 6 − print c

step 7 − STOP

Algorithms tell the programmers how to code the program. Alternatively, the algorithm can be written as −

step 1 − START ADD

step 2 − get values of a & b step 3 − c ← a + b

step 4 − display c step 5 − STOP

Execution Time Cases

There are three cases which are usually used to compare various data structure's execution time in a relative manner.

(4)

Worst Case − This is the scenario where a particular data structure operation takes maximum time it can take. If an operation's worst case time is ƒ(n) then this operation will not take more than ƒ(n) time where ƒ(n) represents function of n.

Average Case − This is the scenario depicting the average execution time of an operation of a data structure. If an operation takes ƒ(n) time in execution, then m operations will take mƒ(n) time.

Best Case − This is the scenario depicting the least possible execution time of an operation of a data structure. If an operation takes ƒ(n) time in execution, then the actual operation may take time as the random number which would be maximum as ƒ(n).

Algorithm Complexity

Suppose X is an algorithm and n is the size of input data, the time and space used by the algorithm X are the two main factors, which decide the efficiency of X.

Time Factor − Time is measured by counting the number of key operations such as comparisons in the sorting algorithm.

Space Factor − Space is measured by counting the maximum memory space required by the algorithm.

The complexity of an algorithm f(n) gives the running time and/or the storage space required by the algorithm in terms of n as the size of input data.

(5)

Space complexity of an algorithm represents the amount of memory space required by the algorithm in its life cycle. The space required by an algorithm is equal to the sum of the following two components −

 A fixed part that is a space required to store certain data and variables, that are independent of the size of the problem. For example, simple variables and constants used, program size, etc.  A variable part is a space required by variables, whose size

depends on the size of the problem. For example, dynamic memory allocation, recursion stack space, etc.

Space complexity S(P) of any algorithm P is S(P) = C + SP(I), where C is the fixed part and S(I) is the variable part of the algorithm, which depends on instance characteristic I. Following is a simple example that tries to explain the concept −

Algorithm: SUM(A, B) Step 1 - START

Step 2 - C ← A + B + 10 Step 3 - Stop

Here we have three variables A, B, and C and one constant. Hence S(P) = 1 + 3. Now, space depends on data types of given variables and constant types and it will be multiplied accordingly.

Time Complexity

Time complexity of an algorithm represents the amount of time required by the algorithm to run to completion. Time requirements can be defined as a numerical function T(n), where T(n) can be measured as the number of steps, provided each step consumes constant time.

For example, addition of two n-bit integers takes n steps. Consequently, the total computational time is T(n) = c ∗ n, where c is the time taken for the addition of two bits. Here, we observe that T(n) grows linearly as the input size increases.

(6)

Asymptotic analysis of an algorithm refers to defining the mathematical boundation/framing of its run-time performance. Using asymptotic analysis, we can very well conclude the best case, average case, and worst case scenario of an algorithm.

Asymptotic analysis is input bound i.e., if there's no input to the algorithm, it is concluded to work in a constant time. Other than the "input" all other factors are considered constant.

Asymptotic analysis refers to computing the running time of any operation in mathematical units of computation. For example, the running time of one operation is computed as f(n) and may be for another operation it is computed as g(n2). This means the first operation running time will increase

linearly with the increase in n and the running time of the second operation will increase exponentially when n increases. Similarly, the running time of both operations will be nearly the same if n is significantly small.

Usually, the time required by an algorithm falls under three types −  Best Case − Minimum time required for program execution.Average Case − Average time required for program execution.Worst Case − Maximum time required for program execution.

Asymptotic Notations

Following are the commonly used asymptotic notations to calculate the running time complexity of an algorithm.

 Ο Notation  Ω Notation  θ Notation

(7)

The notation Ο(n) is the formal way to express the upper bound of an algorithm's running time. It measures the worst case time complexity or the longest amount of time an algorithm can possibly take to complete.

Order of growth is how the time of execution depends on the length of the input. In

the above example, we can clearly see that the time of execution is linearly depends on the length of the array. Order of growth will help us to compute the running time with ease. We will ignore the lower order terms, since the lower order terms are relatively insignificant for large input. We use different notation to describe limiting behavior of a function.

Whenever we want to perform analysis of an algorithm, we need to

calculate the complexity of that algorithm. But when we calculate

complexity of an algorithm it does not provide exact amount of resource

required. So instead of taking exact amount of resource we represent that

complexity in a general form (Notation) which produces the basic nature of

that algorithm. We use that general form (Notation) for analysis process.

Asymptotic notation of an algorithm is a mathematical representation of

its complexity

we use THREE types of Asymptotic Notations and those are as follows...

1. Big - Oh (O)

2. Big - Omega (Ω)

3. Big - Theta (Θ)

Big - Oh Notation (O)

Big - Oh notation is used to define the upper bound of an algorithm in terms

of Time Complexity.

That means Big - Oh notation always indicates the maximum time required

by an algorithm for all input values. That means Big - Oh notation describes

the worst case of an algorithm time complexity.

(8)

Big - Oh Notation can be defined as follows...

Consider function f(n) the time complexity of an algorithm and g(n) is

the most significant term. If f(n) <= C g(n) for all n >= n

0

, C > 0 and n

0

 >=

1. Then we can represent f(n) as O(g(n)).

f(n) = O(g(n))

Consider the following graph drawn for the values of f(n) and C g(n) for

input (n) value on X-Axis and time required is on Y-Axis

In above graph after a particular input value n

0

, always C g(n) is greater than

f(n) which indicates the algorithm's upper bound.

Big - Omege Notation (Ω)

(9)

The notation Ω(n) is the formal way to express the lower bound of an algorithm's running time. It measures the best case time complexity or the best amount of time an algorithm can possibly take to complete.

Big - Omega notation is used to define the lower bound of an algorithm in

terms of Time Complexity.

That means Big - Omega notation always indicates the minimum time

required by an algorithm for all input values. That means Big - Omega

notation describes the best case of an algorithm time complexity.

Big - Omega Notation can be defined as follows...

Consider function f(n) the time complexity of an algorithm and g(n) is

the most significant term. If f(n) >= C x g(n) for all n >= n

0

, C >

0 and n

0

 >= 1. Then we can represent f(n) as Ω(g(n)).

f(n) = Ω(g(n))

Consider the following graph drawn for the values of f(n) and C g(n) for

input (n) value on X-Axis and time required is on Y-Axis

(10)

In above graph after a particular input value n

0

, always C x g(n) is less than

f(n) which indicates the algorithm's lower bound.

Big - Theta Notation (Θ)

Big - Theta notation is used to define the average bound of an algorithm in

terms of Time Complexity.

That means Big - Theta notation always indicates the average time required

by an algorithm for all input values. That means Big - Theta notation

describes the average case of an algorithm time complexity.

(11)

Consider function f(n) the time complexity of an algorithm and g(n) is

the most significant term. If C

1

 g(n) <= f(n) >= C

2

 g(n) for all n >= n

0

, C

1

,

C

2

 > 0 and n

0

 >= 1. Then we can represent f(n) as Θ(g(n)).

f(n) = Θ(g(n))

Theta Notation, θ

The notation θ(n) is the formal way to express both the lower bound and the upper bound of an algorithm's running time.

Consider the following graph drawn for the values of f(n) and C g(n) for

input (n) value on X-Axis and time required is on Y-Axis

(12)

In above graph after a particular input value n

0

, always C

1

 g(n) is less

than f(n) and C

2

 g(n) is greater than f(n) which indicates the algorithm's

average bound.

Linear Search:

Linear search is a very simple search algorithm. In this type of

search, a sequential search is made over all items one by one.

Every item is checked and if a match is found then that particular

item is returned, otherwise the search continues till the end of the

data collection.

Linear Search ( Array A, Value x) Step 1: Set i to 1

Step 2: if i > n then go to step 7 Step 3: if A[i] = x then go to step 6 Step 4: Set i to i + 1

Step 5: Go to Step 2

Step 6: Print Element x Found at index i and go to step 8 Step 7: Print element not found

References

Related documents

On their front or longitudinal sides, the bus bars 2, 3 also present connection tabs 6, 7 which are disposed such as to be also fixed to the edge of the printed circuit board1.

An on-site garden, used either as wander space or a treatment environment or both, is perceived as improving quality of life, sleep, appetite, stress levels, and mood for

In Colorado, the rules of civil procedure require parties in district court civil cases to submit, within 45 days after the case is at issue, a proposed Case Management Order

National Conference on Technical Vocational Education, Training and Skills Development: A Roadmap for Empowerment (Dec. 2008): Ministry of Human Resource Development, Department

This conclusion is further supported by the following observations: (i) constitutive expression of stdE and stdF in a Dam + background represses SPI-1 expression (Figure 5); (ii)

In this PhD thesis new organic NIR materials (both π-conjugated polymers and small molecules) based on α,β-unsubstituted meso-positioning thienyl BODIPY have been

Project Management, Configuration Services, Deployment Services, Asset Tagging, Apple One-to-One Services Solution, Remote Consulting, and Full-Time Resources are custom

A maneira histórico-dialética lukácsiana de enxergar a evolução humana nos permite entender melhor a intercalação dos processos envolvidos em cada momento histórico. 36)