DATA STRUCTURE
By Parviz Ellson F
WHAT IS DATA STRUCTURE?
A Data structure is a storage that is used to
store and organise data
It is a way of arranging data on a computer
so that it can be accessed and updated
efficiently
It is also used for processing,retreving and
storing data
CLASSIFICATION OF DATA STRUCTURE
LINEAR DATA STRUCTURE
A data structure in which data elements are
arranged sequentially or linearly where each
elements is attached to its previous and next
adjacent element
STATIC DATA STRUCTURE:
It has a fixed memory size
It is easier to access elements in static data
structure
DYNAMIC DATA STRUCTURE:
In dynamic data structure the size is not fixed
It can be randomly updated during the
runtime which may be considered efficient
concerning the memory complexity of the
code
NON-LINEAR DATA STRUCTURE
TREE:
A tree is a non-linear data structure
compared
to arrays ,linked ,list and stacks which are
linear data structures.
GRAPH:
It is made up of nodes or vertical edges
connect any two nodes in the graph and the
nodes are also known as vertices
THANK YOU