SlideShare una empresa de Scribd logo
1 de 24
Data Structure
ENG. YOUSSEF ABDELHAKIM
Agenda:


Abstract Data Type (ADT).



What is the Data Structure ?



Data Structure examples :



Queue.



Stack.



Binary Search Tree(BST).



Lists.



Arrays.



Linked List.



Graph.



Hashing.
Abstract Data Type (ADT).


An ADT is fully described by a domain of values
together with a set of operations to manipulate
these values.



Ex: point = {{(a,b) : a, b belongs to R, {create, translate, rotate,
scale} }



Ex: set = { { a collection of well defined and distinct objects} {isEmpty,
numElements, union, intersection,} }
What is the Data Structure?


A data structure is one way of implementing an ADT.



The way in which the data is organized affects the
performance of a program for different tasks.



Computer programmers decide which data structures
to use based on the nature of the data and the
processes that need to be performed on that data.



An ADT can have several different data structures.



A set might be implemented using a sorted dynamic
array, or using a binary search tree.
Data Structure examples :
Queue :
A

Queue is a list-like structure where elements
can be inserted into only one end and
removed from the other end in a First In First
Out (FIFO) fashion.
A

queue is a good data structure to use for
storing things that need to be kept in order,
such as a set of documents waiting to be
printed on a network printer.
Queue Applications :


Printing Job Management



Packet Forwarding in Routers



Message queue in Windows



I/O buffer
Operations on the queue :


enqueue




dequeue




check whether the queue is full or not

size




check whether the queue is empty or not

isFull




remove a item from the front

isEmpty




add a new item at the rear

return the number of items in the queue

peek


return the front item
Stack :


A Stack is a list-like structure where
elements can be inserted or removed from
only one end in a Last In First Out (LIFO)
fashion.



An important application we make it with
stack : Undo / Redo .



Some languages, like LISP and Python, do not call
for stack implementations, since push and pop
functions are available for any list.
Last-in First-out (LIFO)
Push A, B, C

A

A

Pop C, B, A

B
A

B
A

C
B
A

The last one
pushed in is the
first one popped
out! (LIFO)

When we push entries
onto the stack and then
pop them out one by one,
we will get the entries in
reverse order.
Stack Implementation :
interface Stack
{
 void push(Object x)
 Object pop()
 Object peek()
 boolean isEmpty()
 int size()
}
Binary Search Tree (BST) :


A binary search tree is another
commonly used data structure. It is
organized like an upside down
tree.



Each spot on the tree, called a
node, holds an item of data along
with a left pointer and a right
pointer.



A binary tree is a good data
structure to use for searching
sorted data.
Lists :


A list is an ordered set of data.
It is often used to store objects
that are to be processed
sequentially.



A list can be used
to create a queue.
Arrays :


An array is an indexed set of
variables, such as dancer[1],
dancer[2], dancer[3],… It is like a
set of boxes that hold things.



An array is a set of
variables that each
store an item.
Arrays and Lists :
 You can see the difference between
arrays and lists when you delete items.
Arrays and Lists
 In a list, the missing spot is
filled in when something is
deleted but in the In
array, an empty variable
is left behind when
something is deleted.
Linked List :
A linked list is a collection of data in
which each element contains the
location of the next element—that is,
each element contains two parts: data
and link. The name of the list is the
same as the name of this pointer
variable.
Operations on linked lists :


The same operations we defined for an array can be applied to a linked list.



Searching a linked list :



Since nodes in a linked list have no names, we use two pointers, pre (for
previous) and cur (for current). At the beginning of the search, the pre
pointer is null and the cur pointer points to the first node. The search
algorithm moves the two pointers together towards the end of the list.
Figure 11.13 shows the movement of these two pointers through the list in
an extreme case scenario: when the target value is larger than any value in
the list.
Graphs:
List, BST, and Hash-Tables are used
for generic storage and search.
Graphs are useful to represent
relationships between data items.
Examples:
 Modeling connectivity in
computer and communications
networks.
 Representing a road map.
 Modeling flow capacities in
transportation networks.
 Modeling family relationships
and business or military
organizations.
Hashing :
Any Questions ?!
Thank You 

Más contenido relacionado

La actualidad más candente

Lecture 1 data structures and algorithms
Lecture 1 data structures and algorithmsLecture 1 data structures and algorithms
Lecture 1 data structures and algorithms
Aakash deep Singhal
 

La actualidad más candente (20)

DATA STRUCTURE IN C LANGUAGE
DATA STRUCTURE IN C LANGUAGEDATA STRUCTURE IN C LANGUAGE
DATA STRUCTURE IN C LANGUAGE
 
Data Structure Using C
Data Structure Using CData Structure Using C
Data Structure Using C
 
Introduction of data structures and algorithms
Introduction of data structures and algorithmsIntroduction of data structures and algorithms
Introduction of data structures and algorithms
 
data structure
data structuredata structure
data structure
 
Introduction to data structure
Introduction to data structureIntroduction to data structure
Introduction to data structure
 
Abstract data types (adt) intro to data structure part 2
Abstract data types (adt)   intro to data structure part 2Abstract data types (adt)   intro to data structure part 2
Abstract data types (adt) intro to data structure part 2
 
Slide 1.-datastructure
Slide 1.-datastructureSlide 1.-datastructure
Slide 1.-datastructure
 
Lecture 1 data structures and algorithms
Lecture 1 data structures and algorithmsLecture 1 data structures and algorithms
Lecture 1 data structures and algorithms
 
Data structure
Data structureData structure
Data structure
 
Computer Science-Data Structures :Abstract DataType (ADT)
Computer Science-Data Structures :Abstract DataType (ADT)Computer Science-Data Structures :Abstract DataType (ADT)
Computer Science-Data Structures :Abstract DataType (ADT)
 
Data structures & algorithms lecture 3
Data structures & algorithms lecture 3Data structures & algorithms lecture 3
Data structures & algorithms lecture 3
 
Data Structures (CS8391)
Data Structures (CS8391)Data Structures (CS8391)
Data Structures (CS8391)
 
Data struters
Data strutersData struters
Data struters
 
Linked List, Types of Linked LIst, Various Operations, Applications of Linked...
Linked List, Types of Linked LIst, Various Operations, Applications of Linked...Linked List, Types of Linked LIst, Various Operations, Applications of Linked...
Linked List, Types of Linked LIst, Various Operations, Applications of Linked...
 
Introduction to stack
Introduction to stack Introduction to stack
Introduction to stack
 
Data structures Lecture no. 2
Data structures Lecture no. 2Data structures Lecture no. 2
Data structures Lecture no. 2
 
Data structures Lecture no.3
Data structures Lecture no.3Data structures Lecture no.3
Data structures Lecture no.3
 
Data structures lectures no 1
Data structures lectures no 1Data structures lectures no 1
Data structures lectures no 1
 
List Data Structure
List Data StructureList Data Structure
List Data Structure
 
R Datatypes
R DatatypesR Datatypes
R Datatypes
 

Similar a General Data structures

DATA STRUCTURE AND ALGORITJM POWERPOINT.ppt
DATA STRUCTURE AND ALGORITJM POWERPOINT.pptDATA STRUCTURE AND ALGORITJM POWERPOINT.ppt
DATA STRUCTURE AND ALGORITJM POWERPOINT.ppt
yarotos643
 
DS Complete notes for Computer science and Engineering
DS Complete notes for Computer science and EngineeringDS Complete notes for Computer science and Engineering
DS Complete notes for Computer science and Engineering
RAJASEKHARV8
 
data structure details of types and .ppt
data structure details of types and .pptdata structure details of types and .ppt
data structure details of types and .ppt
poonamsngr
 
Datastructures and algorithms prepared by M.V.Brehmanada Reddy
Datastructures and algorithms prepared by M.V.Brehmanada ReddyDatastructures and algorithms prepared by M.V.Brehmanada Reddy
Datastructures and algorithms prepared by M.V.Brehmanada Reddy
Malikireddy Bramhananda Reddy
 

Similar a General Data structures (20)

UNITIII LDS.pdf
UNITIII LDS.pdfUNITIII LDS.pdf
UNITIII LDS.pdf
 
1 list datastructures
1 list datastructures1 list datastructures
1 list datastructures
 
Data Structures & Algorithms Unit 1.pptx
Data Structures & Algorithms Unit 1.pptxData Structures & Algorithms Unit 1.pptx
Data Structures & Algorithms Unit 1.pptx
 
Data Structure
Data Structure Data Structure
Data Structure
 
chapter three ppt.pptx
chapter three ppt.pptxchapter three ppt.pptx
chapter three ppt.pptx
 
DATA STRUCTURE AND ALGORITJM POWERPOINT.ppt
DATA STRUCTURE AND ALGORITJM POWERPOINT.pptDATA STRUCTURE AND ALGORITJM POWERPOINT.ppt
DATA STRUCTURE AND ALGORITJM POWERPOINT.ppt
 
1597380885789.ppt
1597380885789.ppt1597380885789.ppt
1597380885789.ppt
 
DS Complete notes for Computer science and Engineering
DS Complete notes for Computer science and EngineeringDS Complete notes for Computer science and Engineering
DS Complete notes for Computer science and Engineering
 
46267037-Data-Structures-PPT.ppt
46267037-Data-Structures-PPT.ppt46267037-Data-Structures-PPT.ppt
46267037-Data-Structures-PPT.ppt
 
data structure details of types and .ppt
data structure details of types and .pptdata structure details of types and .ppt
data structure details of types and .ppt
 
Data structure & algorithms introduction
Data structure & algorithms introductionData structure & algorithms introduction
Data structure & algorithms introduction
 
Datastructures and algorithms prepared by M.V.Brehmanada Reddy
Datastructures and algorithms prepared by M.V.Brehmanada ReddyDatastructures and algorithms prepared by M.V.Brehmanada Reddy
Datastructures and algorithms prepared by M.V.Brehmanada Reddy
 
Which data structure is it? What are the various data structure kinds and wha...
Which data structure is it? What are the various data structure kinds and wha...Which data structure is it? What are the various data structure kinds and wha...
Which data structure is it? What are the various data structure kinds and wha...
 
data structure programing language in c.ppt
data structure programing language in c.pptdata structure programing language in c.ppt
data structure programing language in c.ppt
 
ARRAYS IN C++ CBSE AND STATE +2 COMPUTER SCIENCE
ARRAYS IN C++ CBSE AND STATE +2 COMPUTER SCIENCEARRAYS IN C++ CBSE AND STATE +2 COMPUTER SCIENCE
ARRAYS IN C++ CBSE AND STATE +2 COMPUTER SCIENCE
 
PM.ppt
PM.pptPM.ppt
PM.ppt
 
Data Structures and algoithms Unit - 1.pptx
Data Structures and algoithms Unit - 1.pptxData Structures and algoithms Unit - 1.pptx
Data Structures and algoithms Unit - 1.pptx
 
Chapter 5 ds
Chapter 5 dsChapter 5 ds
Chapter 5 ds
 
PM.ppt
PM.pptPM.ppt
PM.ppt
 
Application of Data structure
Application of Data structureApplication of Data structure
Application of Data structure
 

Último

Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdfVishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
ssuserdda66b
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 

Último (20)

Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdfVishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 

General Data structures

  • 2. Agenda:  Abstract Data Type (ADT).  What is the Data Structure ?  Data Structure examples :  Queue.  Stack.  Binary Search Tree(BST).  Lists.  Arrays.  Linked List.  Graph.  Hashing.
  • 3. Abstract Data Type (ADT).  An ADT is fully described by a domain of values together with a set of operations to manipulate these values.  Ex: point = {{(a,b) : a, b belongs to R, {create, translate, rotate, scale} }  Ex: set = { { a collection of well defined and distinct objects} {isEmpty, numElements, union, intersection,} }
  • 4. What is the Data Structure?  A data structure is one way of implementing an ADT.  The way in which the data is organized affects the performance of a program for different tasks.  Computer programmers decide which data structures to use based on the nature of the data and the processes that need to be performed on that data.  An ADT can have several different data structures.  A set might be implemented using a sorted dynamic array, or using a binary search tree.
  • 5. Data Structure examples : Queue : A Queue is a list-like structure where elements can be inserted into only one end and removed from the other end in a First In First Out (FIFO) fashion. A queue is a good data structure to use for storing things that need to be kept in order, such as a set of documents waiting to be printed on a network printer.
  • 6. Queue Applications :  Printing Job Management  Packet Forwarding in Routers  Message queue in Windows  I/O buffer
  • 7. Operations on the queue :  enqueue   dequeue   check whether the queue is full or not size   check whether the queue is empty or not isFull   remove a item from the front isEmpty   add a new item at the rear return the number of items in the queue peek  return the front item
  • 8. Stack :  A Stack is a list-like structure where elements can be inserted or removed from only one end in a Last In First Out (LIFO) fashion.  An important application we make it with stack : Undo / Redo .  Some languages, like LISP and Python, do not call for stack implementations, since push and pop functions are available for any list.
  • 9. Last-in First-out (LIFO) Push A, B, C A A Pop C, B, A B A B A C B A The last one pushed in is the first one popped out! (LIFO) When we push entries onto the stack and then pop them out one by one, we will get the entries in reverse order.
  • 10. Stack Implementation : interface Stack {  void push(Object x)  Object pop()  Object peek()  boolean isEmpty()  int size() }
  • 11. Binary Search Tree (BST) :  A binary search tree is another commonly used data structure. It is organized like an upside down tree.  Each spot on the tree, called a node, holds an item of data along with a left pointer and a right pointer.  A binary tree is a good data structure to use for searching sorted data.
  • 12. Lists :  A list is an ordered set of data. It is often used to store objects that are to be processed sequentially.  A list can be used to create a queue.
  • 13. Arrays :  An array is an indexed set of variables, such as dancer[1], dancer[2], dancer[3],… It is like a set of boxes that hold things.  An array is a set of variables that each store an item.
  • 14. Arrays and Lists :  You can see the difference between arrays and lists when you delete items.
  • 15. Arrays and Lists  In a list, the missing spot is filled in when something is deleted but in the In array, an empty variable is left behind when something is deleted.
  • 16. Linked List : A linked list is a collection of data in which each element contains the location of the next element—that is, each element contains two parts: data and link. The name of the list is the same as the name of this pointer variable.
  • 17. Operations on linked lists :  The same operations we defined for an array can be applied to a linked list.  Searching a linked list :  Since nodes in a linked list have no names, we use two pointers, pre (for previous) and cur (for current). At the beginning of the search, the pre pointer is null and the cur pointer points to the first node. The search algorithm moves the two pointers together towards the end of the list. Figure 11.13 shows the movement of these two pointers through the list in an extreme case scenario: when the target value is larger than any value in the list.
  • 18. Graphs: List, BST, and Hash-Tables are used for generic storage and search. Graphs are useful to represent relationships between data items. Examples:  Modeling connectivity in computer and communications networks.  Representing a road map.  Modeling flow capacities in transportation networks.  Modeling family relationships and business or military organizations.
  • 20.
  • 21.
  • 22.