Uploaded by Antor Bosu Antu 0242310005341317

Introduction to Data Structure

advertisement
Introduction to Data Structure
Lecture-01
What is Data Structure?
A data structure is a storage that is used to store and organize
data. It is a way of arranging data on a computer so that it can
be accessed and updated efficiently. A data structure is not only
used for organizing the data. It is also used for processing,
retrieving, and storing data.
Classification of Data structure
Linear Data Structures
The data is stored in linear data structures sequentially. Linear
data structures are usually easy to implement but since the
memory allocation might become complicated, time and space
complexities increase.
Static Linear Data Structures
Vs. Dynamic Linear Data Structures
In Static Linear Data Structures, the memory
In Dynamic linear data structures, the memory
allocation is not scalable. Once the entire memory is
allocation can be done dynamically when required.
used, no more space can be retrieved to store more
These data structures are efficient considering the space
data.
complexity of the program.
Non-Linear data structures
Non-Linear data structures store the data in the form of a
hierarchy. Therefore, in contrast to the linear data
structures, the data can be found in multiple levels and
are difficult to traverse through.
Data Structure Applications
Arrays:
An array is a linear data structure and it is a
collection of items stored at contiguous
memory locations. The idea is to store
multiple items of the same type together in
one place. It allows the processing of a large
amount of data in a relatively short period.
Home Task: Find out real life applications of
array.
Data Structure Applications
Linked list:
A linked list is a linear data structure in
which elements are not stored at contiguous
memory locations. The elements in a linked
list are linked using pointers.
Home Task: Find out real life applications of
linked list.
Data Structure Applications
Stack:
Stack is a linear data structure that follows a
particular order in which the operations are
performed. The order is LIFO(Last in first
out). Entering and retrieving data is possible
from only one end. The entering and
retrieving of data is also called push and
pop operation in a stack.
Home Task: Find out real life applications of
Stack.
Data Structure Applications
Queue:
Queue is a linear data structure that follows
a particular order in which the operations
are performed. The order is First In First
Out(FIFO) i.e. the data item stored first will
be accessed first. In this, entering and
retrieving data is not done from only one
end.
Home Task: Find out real life applications of
Queue.
Data Structure Applications
Tree:
A tree is a non-linear and hierarchical data
structure where the elements are arranged in a
tree-like structure. In a tree, the topmost node is
called the root node. Each node contains some
data, and data can be of any type. It consists of a
central node, structural nodes, and sub-nodes
which are connected via edges.
Home Task: Find out real life applications of Tree.
Data Structure Applications
Graph:
A graph is a non-linear data structure that
consists of vertices (or nodes) and edges. It
consists of a finite set of vertices and set of edges
that connect a pair of nodes. The graph is used to
solve the most challenging and complex
programming problems
Home Task: Find out real life applications of
Graph.
Download