SlideShare une entreprise Scribd logo
1  sur  19
© Oxford University Press 2011. All rights reserved.
Data Structures Using CData Structures Using C
Reema TharejaReema Thareja, Assistant Professor, Institute of
Information Technology and Management,
New Delhi
© Oxford University Press 2011. All rights reserved.
CHAPTER 4
INTRODUCTION TO
DATA STRUCTURES
© Oxford University Press 2011. All rights reserved.
INTRODUCTION
• A data structure is nothing but an arrangement of data either in
computer's memory or on the disk storage.
• Some common examples of data structure includes arrays, linked
lists, queues, stacks, binary trees, and hash tables.
• Data structures are widely applied in areas like:
a. Compiler design
b. Operating system
c. Statistical analysis package
d. DBMS
e. Numerical analysis
f. Simulation
g. Artificial Intelligence
h. Graphics
© Oxford University Press 2011. All rights reserved.
DIFFERENT TYPES OF
DATA STRUCTURES
© Oxford University Press 2011. All rights reserved.
Arrays
• An array is a collection of similar data elements.
• These data elements have the same data type.
• The elements of the array are stored in consecutive memory
locations and are referenced by an index (also known as the
subscript).
• Arrays are declared using the following syntax.
type name[size];
1st
element 2nd
element
3rd
element
4th
element 5th
element 6th
element 7th
element 8th
element 9th
element 10th
element
marks[0] marks[1] marks[2] marks[3] marks[4] marks[5] marks[6] marks[7] marks[8] marks[9]
The limitations with arrays include:
Arrays are of fixed size.
Data elements are stored in continuous memory locations which
may not be available always.
Adding and removing of elements is problematic because of
shifting the elements from their positions.
© Oxford University Press 2011. All rights reserved.
Linked List
• Linked list is a very flexible dynamic data structure in which
elements can be added to or deleted from anywhere at will.
• In contrast to using static arrays, a programmer need not worry
about how many elements will be stored in the linked list. This
feature enables the programmers to write robust programs which
require much less maintenance.
• In a linked list, each element (is called a node) is allocated space
as it is added to the list. Every node in the list points to the next
node in the list. Therefore, in a linked list every node contains two
types of information:
The data stored in the node and
A pointer or link to the next node in the list
• Advantage: Provides quick insert, and delete operations
• Disadvantage: Slower search operation and requires more memory
space
1 2 3 4 5 6 7 X
© Oxford University Press 2011. All rights reserved.
Stack
• In computer’s memory stacks can be represented as a linear array.
• Every stack has a variable TOP associated with it. Top is used to store
the address of the topmost element of the stack. It is this position from
where the element will be added or deleted. There is another variable
MAX which will be used to store the maximum number of elements that
the stack can store.
• If TOP = NULL, then it indicates that the stack is empty and if TOP =
MAX, then the stack is full.
• If TOP = -1, it indicates that there is no element in the stack.
• Advantage: Last-in, first-out access (LIFO)
• Disadvantage: Slow access to other elements
is full.
A AB ABC ABCD ABCDE
0 1 2 3 TOP = 4 5 6 7 8 9
© Oxford University Press 2011. All rights reserved.
Queue
• A queue is a FIFO (First In First Out) data structure in which the
element that was inserted first is the first one to be taken out.
• The elements in a queue are added at one end called the rear and
removed from the other one end called front. Like stacks, queues can
be implemented either using arrays or linked lists.
• When Rear = MAX – 1, where MAX is the size of the queue that is,
MAX specifies the maximum number of elements in the queue.
• If front = -1 and rear = -1, this means there is no element in the queue.
• Advantage: Provides first-in, first-out data access
• Disadvantage: Slow access to other items
9 7 18 14 36 45
0 FRONT = 1 2 3 4 REAR = 6 7 8 9
© Oxford University Press 2011. All rights reserved.
Tree
• A binary tree is a data structure which is defined as a collection of
elements called nodes.
• Every node contains a "left" pointer, a "right" pointer, and a data
element.
• Every binary tree has a root element pointed by a "root" pointer.
The root element is the topmost node in the tree.
• If root = NULL, then it means the tree is empty.
• Advantages: Provides quick search, insert and delete operations
• Disadvantage: Complicated deletion algorithm
1
32
4
8
5 6 7
12
10 1
1
ROOT NODE
T2T1
9
© Oxford University Press 2011. All rights reserved.
Graph
• A graph is a collection of vertices (also called nodes) and edges that
connect these vertices.
• A graph is often viewed as a generalization of the tree structure,
where instead of a having a purely parent-to-child relationship
between tree nodes, any kind of complex relationships between the
nodes can be represented.
• While in trees, the nodes can have many children but only one
parent, a graph on the other hand relaxes all such kinds of
restrictions.
• unlike trees, graphs do not have any root node. Rather, every node in
the graph can be connected with any other node in the graph. When
two nodes are connected via an edge, the two nodes are known as
neighbors.
• Advantages: Best models real-world situations
• Disadvantages: Some algorithms are slow and very complex
A
D
B C
E
© Oxford University Press 2011. All rights reserved.
ABSTRACT DATA TYPE
• An Abstract Data Type (ADT) is the way at which we look at a data
structure, focusing on what it does and ignoring how it does its job.
• For example, stack and queue are perfect examples of an abstract
data type. We can implement both these ADTs using an array or a
linked list. This demonstrates the "abstract" nature of stacks and
queues.
• In C, an Abstract Data Type can be a structure considered without
regard to its implementation. It can be thought of as a "description" of
the data in the structure with a list of operations that can be
performed on the data within that structure.
• The end user is not concerned about the details of how the methods
carry out their tasks. They are only aware of the methods that are
available to them and are concerned only about calling those
methods and getting back the results but not HOW they work.
© Oxford University Press 2011. All rights reserved.
CODE DESCRIPTION
typedef struct stack_Rep
stack_Rep;
instance representation record
typedef stack_Rep *stack_T; pointer to a stack instance
typedef void *stack_Item; value to be stored on stack
stack_T create_stack(void); Create an empty stack instance
void push(stack_T st, stack_Item
v)
Add an item at the top of the stack
stack_Item pop(stack_T st); Remove the top item from the stack
and return it
int is_empty(stack_T st); Check whether stack is empty
Stack.h to be used in abstract stack implementation
#include <stack.h>
stack_T s = create_stack();
int val = 09;
s = push(t, &val);
void *v = pop(s);
if (is_empty(s))
{ … }
Implementation of abstract stack using stack.h
© Oxford University Press 2011. All rights reserved.
ALGORITHM
• The typical meaning of "algorithm" is a formally defined procedure for
performing some calculation.
• An algorithm provides a blueprint to write a program to solve a
particular problem.
• It is considered to be an effective procedure for solving a problem in
finite number of steps. That is, a well-defined algorithm always
provides an answer and is guaranteed to terminate.
• Algorithms are mainly used to achieve software re-use. Once we
have an idea or a blueprint of a solution, we can implement in any
high level language like C, C++, Java, so on and so forth.
• Write an algorithm to find whether a number is even or odd
• Step 1: Input the first number as A
• Step 2: IF A%2 =0
• Then Print "EVEN"
• ELSE
• PRINT "ODD"
• Step 3: END
© Oxford University Press 2011. All rights reserved.
TIME AND SPACE COMPLEXITY
OF ALGORITHM
• To analyze an algorithm means determining the amount of resources (such
as time and storage) needed to execute it. Algorithms are generally designed
to work with an arbitrary number of inputs, so the efficiency or complexity of
an algorithm is stated in terms of time complexity and space complexity.
• The time Complexity of an algorithm is basically the running time of the
program as a function of the input size. On similar grounds, space complexity
of an algorithm is the amount of computer memory required during the
program execution, as a function of the input size
• Time complexity of an algorithm depends on the number of machine
instructions in which a program executes. This number is primarily dependant
on the size of the program's input and the algorithm used.
• The space needed by a program depends on:
Fixed part, that varies with problem to problem. It includes space needed for
storing instructions, constants, variables and structured variables (like arrays,
structures)
Variable part, that varies from program to program. It includes space needed
for recursion stack, and for structured variables that are allocated space
dynamically during the run-time of the program.
© Oxford University Press 2011. All rights reserved.
Calculating Algorithm Efficiency
• If a function is linear (without any loops or recursions), the efficiency of
that algorithm or the running time of that algorithm can be given as the
number of instructions it contains.
• If an algorithm contains certain loops or recursive functions then the
efficiency of that algorithm may vary depending on the number of loops
and the running time of each loop in the algorithm.
• The efficiency of an algorithm is expressed in terms of the number of
elements that has to be processed. So, if n is the number of elements,
then the efficiency can be stated as
f(n) = efficiency
Linear loops
for(i=0;i<n;i++)
statement block
f(n) = efficiency
Logarithmic Loops
for(i=1;i<n;i*=2) for(i=0;i<n;i/=2)
statement block; statement block;
f(n) = log n f(n) = log n
© Oxford University Press 2011. All rights reserved.
Calculating Algorithm Efficiency
contd.Nested Loops
• Total no. of iterations = no. of iterations in inner loop * no. of iterations in outer
loop
• In case of nested loops, we will analyze the efficiency of the algorithm based on
whether it’s a linear logarithmic, quadratic or dependant quadratic nested loop.
Linear logarithmic
for(i=0;i<n;i++)
for(j=1; j<n;j*=2)
statement block;
f(n)= n log n
Quadratic Loop
for(i=0;i<n;i++)
for(j=1; j<n;j++)
statement block;
f(n) = n * n
Dependent Quadratic
for(i=0;i<n;i++)
for(j=1; j<i;j++)
statement block;
f(n) = n (n + 1)/2
OR f(n) = n (n + 1)/2
© Oxford University Press 2011. All rights reserved.
BIG OH NOTATION
• Big-Oh notation where the "O" stands for "order of" is concerned with
what happens for very large values of n.
• For example, if a sorting algorithm performs n2
operations to sort just n
elements, then that algorithm would be described as an O(n2
)
algorithm.
• When expressing complexity using Big Oh notation, constant
multipliers are ignored. So a O(4n) algorithm is equivalent to O(n),
which is how it should be written.
• If f(n) and g(n) are functions defined on positive integer number n, then
f(n) = O(g(n))
• That is, f of n is big oh of g of n if and only if there exists positive
constants c and n, such that
f (n) ≤ Cg(n) ≤ n
• This means that for large amounts of data, f(n) will grow no more than
a constant factor than g(n). Hence, g provides an upper bound.
© Oxford University Press 2011. All rights reserved.
Categories of Algorithms
• Constant time algorithm that have running time complexity given as
O(1)
• Linear time algorithm that have running time complexity given as
O(n)
• Logarithmic time algorithm that have running time complexity given
as O(log n)
• Polynomial time algorithm that have running time complexity given
as O(nk) where k>1
• Exponential time algorithm that have running time complexity given
as O(2n
)
Number of operations for different functions of n
n O(1) O(log n) O(n) O(n log n) O(n2
) O(n3
)
1 1 1 1 1 1 1
2 1 1 2 2 4 8
4 1 2 4 8 16 64
8 1 3 8 24 64 512
16 1 4 16 64 256 4,096
© Oxford University Press 2011. All rights reserved.
NP- COMPLETE
• In computational complexity theory, the complexity class NP-C (Non-
deterministic Polynomial time- Complete), is a class of problems that
exhibits two properties:
• A set of problems is said to be NP is any given solution to the problem
can be verified quickly in polynomial time.
• If the problem can be solved quickly in polynomial time, then it implies
that every problem in NP can be solved in polynomial time
• Even if a given solution to a problem can be verified quickly, there is
no known efficient way to locate a solution in the first place. Therefore,
it is not wrong to say that solutions to NP-complete problems may not
even be known.
• A problem p in NP is also in NPC if and only if every other problem in
NP can be transformed into p in polynomial time.
• if any single problem in NP-complete can be solved quickly, then
every problem in NP can also be quickly solved.

Contenu connexe

Tendances

Queue - Data Structure - Notes
Queue - Data Structure - NotesQueue - Data Structure - Notes
Queue - Data Structure - NotesOmprakash Chauhan
 
Threaded Binary Tree
Threaded Binary TreeThreaded Binary Tree
Threaded Binary Treekhabbab_h
 
UNIT I LINEAR DATA STRUCTURES – LIST
UNIT I 	LINEAR DATA STRUCTURES – LIST 	UNIT I 	LINEAR DATA STRUCTURES – LIST
UNIT I LINEAR DATA STRUCTURES – LIST Kathirvel Ayyaswamy
 
Searching and Sorting Techniques in Data Structure
Searching and Sorting Techniques in Data StructureSearching and Sorting Techniques in Data Structure
Searching and Sorting Techniques in Data StructureBalwant Gorad
 
358 33 powerpoint-slides_9-stacks-queues_chapter-9
358 33 powerpoint-slides_9-stacks-queues_chapter-9358 33 powerpoint-slides_9-stacks-queues_chapter-9
358 33 powerpoint-slides_9-stacks-queues_chapter-9sumitbardhan
 
Priority queue in DSA
Priority queue in DSAPriority queue in DSA
Priority queue in DSAjunnubabu
 
Python Data Structures and Algorithms.pptx
Python Data Structures and Algorithms.pptxPython Data Structures and Algorithms.pptx
Python Data Structures and Algorithms.pptxShreyasLawand
 
Ll(1) Parser in Compilers
Ll(1) Parser in CompilersLl(1) Parser in Compilers
Ll(1) Parser in CompilersMahbubur Rahman
 
Data Structures- Part7 linked lists
Data Structures- Part7 linked listsData Structures- Part7 linked lists
Data Structures- Part7 linked listsAbdullah Al-hazmy
 
358 33 powerpoint-slides_10-trees_chapter-10
358 33 powerpoint-slides_10-trees_chapter-10358 33 powerpoint-slides_10-trees_chapter-10
358 33 powerpoint-slides_10-trees_chapter-10sumitbardhan
 

Tendances (20)

Structure in C
Structure in CStructure in C
Structure in C
 
Queue - Data Structure - Notes
Queue - Data Structure - NotesQueue - Data Structure - Notes
Queue - Data Structure - Notes
 
Threaded Binary Tree
Threaded Binary TreeThreaded Binary Tree
Threaded Binary Tree
 
single linked list
single linked listsingle linked list
single linked list
 
Stack and Queue
Stack and Queue Stack and Queue
Stack and Queue
 
UNIT I LINEAR DATA STRUCTURES – LIST
UNIT I 	LINEAR DATA STRUCTURES – LIST 	UNIT I 	LINEAR DATA STRUCTURES – LIST
UNIT I LINEAR DATA STRUCTURES – LIST
 
Searching and Sorting Techniques in Data Structure
Searching and Sorting Techniques in Data StructureSearching and Sorting Techniques in Data Structure
Searching and Sorting Techniques in Data Structure
 
358 33 powerpoint-slides_9-stacks-queues_chapter-9
358 33 powerpoint-slides_9-stacks-queues_chapter-9358 33 powerpoint-slides_9-stacks-queues_chapter-9
358 33 powerpoint-slides_9-stacks-queues_chapter-9
 
stack & queue
stack & queuestack & queue
stack & queue
 
Circular queue
Circular queueCircular queue
Circular queue
 
Priority queue in DSA
Priority queue in DSAPriority queue in DSA
Priority queue in DSA
 
Linked list
Linked listLinked list
Linked list
 
Python Data Structures and Algorithms.pptx
Python Data Structures and Algorithms.pptxPython Data Structures and Algorithms.pptx
Python Data Structures and Algorithms.pptx
 
Data Structures
Data StructuresData Structures
Data Structures
 
Ll(1) Parser in Compilers
Ll(1) Parser in CompilersLl(1) Parser in Compilers
Ll(1) Parser in Compilers
 
Data Structures- Part7 linked lists
Data Structures- Part7 linked listsData Structures- Part7 linked lists
Data Structures- Part7 linked lists
 
Stack
StackStack
Stack
 
Array in c
Array in cArray in c
Array in c
 
358 33 powerpoint-slides_10-trees_chapter-10
358 33 powerpoint-slides_10-trees_chapter-10358 33 powerpoint-slides_10-trees_chapter-10
358 33 powerpoint-slides_10-trees_chapter-10
 
Hashing
HashingHashing
Hashing
 

En vedette

358 33 powerpoint-slides_1-introduction-c_chapter-1
358 33 powerpoint-slides_1-introduction-c_chapter-1358 33 powerpoint-slides_1-introduction-c_chapter-1
358 33 powerpoint-slides_1-introduction-c_chapter-1sumitbardhan
 
358 33 powerpoint-slides_2-functions_chapter-2
358 33 powerpoint-slides_2-functions_chapter-2358 33 powerpoint-slides_2-functions_chapter-2
358 33 powerpoint-slides_2-functions_chapter-2sumitbardhan
 
358 33 powerpoint-slides_13-graphs_chapter-13
358 33 powerpoint-slides_13-graphs_chapter-13358 33 powerpoint-slides_13-graphs_chapter-13
358 33 powerpoint-slides_13-graphs_chapter-13sumitbardhan
 
358 33 powerpoint-slides_3-pointers_chapter-3
358 33 powerpoint-slides_3-pointers_chapter-3358 33 powerpoint-slides_3-pointers_chapter-3
358 33 powerpoint-slides_3-pointers_chapter-3sumitbardhan
 
358 33 powerpoint-slides_5-arrays_chapter-5
358 33 powerpoint-slides_5-arrays_chapter-5358 33 powerpoint-slides_5-arrays_chapter-5
358 33 powerpoint-slides_5-arrays_chapter-5sumitbardhan
 
358 33 powerpoint-slides_7-structures_chapter-7
358 33 powerpoint-slides_7-structures_chapter-7358 33 powerpoint-slides_7-structures_chapter-7
358 33 powerpoint-slides_7-structures_chapter-7sumitbardhan
 
358 33 powerpoint-slides_8-linked-lists_chapter-8
358 33 powerpoint-slides_8-linked-lists_chapter-8358 33 powerpoint-slides_8-linked-lists_chapter-8
358 33 powerpoint-slides_8-linked-lists_chapter-8sumitbardhan
 
358 33 powerpoint-slides_6-strings_chapter-6
358 33 powerpoint-slides_6-strings_chapter-6358 33 powerpoint-slides_6-strings_chapter-6
358 33 powerpoint-slides_6-strings_chapter-6sumitbardhan
 
358 33 powerpoint-slides_14-sorting_chapter-14
358 33 powerpoint-slides_14-sorting_chapter-14358 33 powerpoint-slides_14-sorting_chapter-14
358 33 powerpoint-slides_14-sorting_chapter-14sumitbardhan
 
358 33 powerpoint-slides_11-efficient-binary-trees_chapter-11
358 33 powerpoint-slides_11-efficient-binary-trees_chapter-11358 33 powerpoint-slides_11-efficient-binary-trees_chapter-11
358 33 powerpoint-slides_11-efficient-binary-trees_chapter-11sumitbardhan
 
Mapreduce Algorithms
Mapreduce AlgorithmsMapreduce Algorithms
Mapreduce AlgorithmsAmund Tveit
 
Hadoop MapReduce Fundamentals
Hadoop MapReduce FundamentalsHadoop MapReduce Fundamentals
Hadoop MapReduce FundamentalsLynn Langit
 
358 33 powerpoint-slides_15-hashing-collision_chapter-15
358 33 powerpoint-slides_15-hashing-collision_chapter-15358 33 powerpoint-slides_15-hashing-collision_chapter-15
358 33 powerpoint-slides_15-hashing-collision_chapter-15sumitbardhan
 

En vedette (13)

358 33 powerpoint-slides_1-introduction-c_chapter-1
358 33 powerpoint-slides_1-introduction-c_chapter-1358 33 powerpoint-slides_1-introduction-c_chapter-1
358 33 powerpoint-slides_1-introduction-c_chapter-1
 
358 33 powerpoint-slides_2-functions_chapter-2
358 33 powerpoint-slides_2-functions_chapter-2358 33 powerpoint-slides_2-functions_chapter-2
358 33 powerpoint-slides_2-functions_chapter-2
 
358 33 powerpoint-slides_13-graphs_chapter-13
358 33 powerpoint-slides_13-graphs_chapter-13358 33 powerpoint-slides_13-graphs_chapter-13
358 33 powerpoint-slides_13-graphs_chapter-13
 
358 33 powerpoint-slides_3-pointers_chapter-3
358 33 powerpoint-slides_3-pointers_chapter-3358 33 powerpoint-slides_3-pointers_chapter-3
358 33 powerpoint-slides_3-pointers_chapter-3
 
358 33 powerpoint-slides_5-arrays_chapter-5
358 33 powerpoint-slides_5-arrays_chapter-5358 33 powerpoint-slides_5-arrays_chapter-5
358 33 powerpoint-slides_5-arrays_chapter-5
 
358 33 powerpoint-slides_7-structures_chapter-7
358 33 powerpoint-slides_7-structures_chapter-7358 33 powerpoint-slides_7-structures_chapter-7
358 33 powerpoint-slides_7-structures_chapter-7
 
358 33 powerpoint-slides_8-linked-lists_chapter-8
358 33 powerpoint-slides_8-linked-lists_chapter-8358 33 powerpoint-slides_8-linked-lists_chapter-8
358 33 powerpoint-slides_8-linked-lists_chapter-8
 
358 33 powerpoint-slides_6-strings_chapter-6
358 33 powerpoint-slides_6-strings_chapter-6358 33 powerpoint-slides_6-strings_chapter-6
358 33 powerpoint-slides_6-strings_chapter-6
 
358 33 powerpoint-slides_14-sorting_chapter-14
358 33 powerpoint-slides_14-sorting_chapter-14358 33 powerpoint-slides_14-sorting_chapter-14
358 33 powerpoint-slides_14-sorting_chapter-14
 
358 33 powerpoint-slides_11-efficient-binary-trees_chapter-11
358 33 powerpoint-slides_11-efficient-binary-trees_chapter-11358 33 powerpoint-slides_11-efficient-binary-trees_chapter-11
358 33 powerpoint-slides_11-efficient-binary-trees_chapter-11
 
Mapreduce Algorithms
Mapreduce AlgorithmsMapreduce Algorithms
Mapreduce Algorithms
 
Hadoop MapReduce Fundamentals
Hadoop MapReduce FundamentalsHadoop MapReduce Fundamentals
Hadoop MapReduce Fundamentals
 
358 33 powerpoint-slides_15-hashing-collision_chapter-15
358 33 powerpoint-slides_15-hashing-collision_chapter-15358 33 powerpoint-slides_15-hashing-collision_chapter-15
358 33 powerpoint-slides_15-hashing-collision_chapter-15
 

Similaire à 358 33 powerpoint-slides_4-introduction-data-structures_chapter-4

Data Structures in C
Data Structures in CData Structures in C
Data Structures in CJabs6
 
Data Structure & Algorithm.pptx
Data Structure & Algorithm.pptxData Structure & Algorithm.pptx
Data Structure & Algorithm.pptxMumtaz
 
Data Structure & aaplications_Module-1.pptx
Data Structure & aaplications_Module-1.pptxData Structure & aaplications_Module-1.pptx
Data Structure & aaplications_Module-1.pptxGIRISHKUMARBC1
 
Learn advanced java programming
Learn advanced java programmingLearn advanced java programming
Learn advanced java programmingTOPS Technologies
 
DS Module 1.pptx
DS Module 1.pptxDS Module 1.pptx
DS Module 1.pptxSaralaT3
 
1.Introduction to Data Structures and Algorithms.pptx
1.Introduction to Data Structures and Algorithms.pptx1.Introduction to Data Structures and Algorithms.pptx
1.Introduction to Data Structures and Algorithms.pptxBlueSwede
 
DS Module 1.pptx
DS Module 1.pptxDS Module 1.pptx
DS Module 1.pptxsarala9
 
Data structures and algorithms short note (version 14).pd
Data structures and algorithms short note (version 14).pdData structures and algorithms short note (version 14).pd
Data structures and algorithms short note (version 14).pdNimmi Weeraddana
 
Unit 2 linear data structures
Unit 2   linear data structuresUnit 2   linear data structures
Unit 2 linear data structuresSenthil Murugan
 
Data structures - Introduction
Data structures - IntroductionData structures - Introduction
Data structures - IntroductionDeepaThirumurugan
 
Data structure and algorithm.
Data structure and algorithm. Data structure and algorithm.
Data structure and algorithm. Abdul salam
 
Introduction to data structures (ss)
Introduction to data structures (ss)Introduction to data structures (ss)
Introduction to data structures (ss)Madishetty Prathibha
 

Similaire à 358 33 powerpoint-slides_4-introduction-data-structures_chapter-4 (20)

UNIT 1.pptx
UNIT 1.pptxUNIT 1.pptx
UNIT 1.pptx
 
Data Structures in C
Data Structures in CData Structures in C
Data Structures in C
 
Data Structure & Algorithm.pptx
Data Structure & Algorithm.pptxData Structure & Algorithm.pptx
Data Structure & Algorithm.pptx
 
Data Structure & aaplications_Module-1.pptx
Data Structure & aaplications_Module-1.pptxData Structure & aaplications_Module-1.pptx
Data Structure & aaplications_Module-1.pptx
 
Learn advanced java programming
Learn advanced java programmingLearn advanced java programming
Learn advanced java programming
 
DS Module 1.pptx
DS Module 1.pptxDS Module 1.pptx
DS Module 1.pptx
 
1.Introduction to Data Structures and Algorithms.pptx
1.Introduction to Data Structures and Algorithms.pptx1.Introduction to Data Structures and Algorithms.pptx
1.Introduction to Data Structures and Algorithms.pptx
 
DS Module 1.pptx
DS Module 1.pptxDS Module 1.pptx
DS Module 1.pptx
 
Lecture 1 and 2
Lecture 1 and 2Lecture 1 and 2
Lecture 1 and 2
 
Data structures and algorithms short note (version 14).pd
Data structures and algorithms short note (version 14).pdData structures and algorithms short note (version 14).pd
Data structures and algorithms short note (version 14).pd
 
intr_ds.ppt
intr_ds.pptintr_ds.ppt
intr_ds.ppt
 
STACK.pptx
STACK.pptxSTACK.pptx
STACK.pptx
 
Data structure
Data structureData structure
Data structure
 
Unit 2 linear data structures
Unit 2   linear data structuresUnit 2   linear data structures
Unit 2 linear data structures
 
Data Structures & Algorithms
Data Structures & AlgorithmsData Structures & Algorithms
Data Structures & Algorithms
 
TSAT Presentation1.pptx
TSAT Presentation1.pptxTSAT Presentation1.pptx
TSAT Presentation1.pptx
 
Data structures - Introduction
Data structures - IntroductionData structures - Introduction
Data structures - Introduction
 
Data structure and algorithm.
Data structure and algorithm. Data structure and algorithm.
Data structure and algorithm.
 
Introduction to data structures (ss)
Introduction to data structures (ss)Introduction to data structures (ss)
Introduction to data structures (ss)
 
Data structure
 Data structure Data structure
Data structure
 

Dernier

Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxUmeshTimilsina1
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfDr Vijay Vishwakarma
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...Amil baba
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Pooja Bhuva
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxPooja Bhuva
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
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.christianmathematics
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
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 17Celine George
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Pooja Bhuva
 
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 ClassroomPooky Knightsmith
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxDr. Sarita Anand
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxDr. Ravikiran H M Gowda
 

Dernier (20)

Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptx
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
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.
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
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
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
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
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
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
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 

358 33 powerpoint-slides_4-introduction-data-structures_chapter-4

  • 1. © Oxford University Press 2011. All rights reserved. Data Structures Using CData Structures Using C Reema TharejaReema Thareja, Assistant Professor, Institute of Information Technology and Management, New Delhi
  • 2. © Oxford University Press 2011. All rights reserved. CHAPTER 4 INTRODUCTION TO DATA STRUCTURES
  • 3. © Oxford University Press 2011. All rights reserved. INTRODUCTION • A data structure is nothing but an arrangement of data either in computer's memory or on the disk storage. • Some common examples of data structure includes arrays, linked lists, queues, stacks, binary trees, and hash tables. • Data structures are widely applied in areas like: a. Compiler design b. Operating system c. Statistical analysis package d. DBMS e. Numerical analysis f. Simulation g. Artificial Intelligence h. Graphics
  • 4. © Oxford University Press 2011. All rights reserved. DIFFERENT TYPES OF DATA STRUCTURES
  • 5. © Oxford University Press 2011. All rights reserved. Arrays • An array is a collection of similar data elements. • These data elements have the same data type. • The elements of the array are stored in consecutive memory locations and are referenced by an index (also known as the subscript). • Arrays are declared using the following syntax. type name[size]; 1st element 2nd element 3rd element 4th element 5th element 6th element 7th element 8th element 9th element 10th element marks[0] marks[1] marks[2] marks[3] marks[4] marks[5] marks[6] marks[7] marks[8] marks[9] The limitations with arrays include: Arrays are of fixed size. Data elements are stored in continuous memory locations which may not be available always. Adding and removing of elements is problematic because of shifting the elements from their positions.
  • 6. © Oxford University Press 2011. All rights reserved. Linked List • Linked list is a very flexible dynamic data structure in which elements can be added to or deleted from anywhere at will. • In contrast to using static arrays, a programmer need not worry about how many elements will be stored in the linked list. This feature enables the programmers to write robust programs which require much less maintenance. • In a linked list, each element (is called a node) is allocated space as it is added to the list. Every node in the list points to the next node in the list. Therefore, in a linked list every node contains two types of information: The data stored in the node and A pointer or link to the next node in the list • Advantage: Provides quick insert, and delete operations • Disadvantage: Slower search operation and requires more memory space 1 2 3 4 5 6 7 X
  • 7. © Oxford University Press 2011. All rights reserved. Stack • In computer’s memory stacks can be represented as a linear array. • Every stack has a variable TOP associated with it. Top is used to store the address of the topmost element of the stack. It is this position from where the element will be added or deleted. There is another variable MAX which will be used to store the maximum number of elements that the stack can store. • If TOP = NULL, then it indicates that the stack is empty and if TOP = MAX, then the stack is full. • If TOP = -1, it indicates that there is no element in the stack. • Advantage: Last-in, first-out access (LIFO) • Disadvantage: Slow access to other elements is full. A AB ABC ABCD ABCDE 0 1 2 3 TOP = 4 5 6 7 8 9
  • 8. © Oxford University Press 2011. All rights reserved. Queue • A queue is a FIFO (First In First Out) data structure in which the element that was inserted first is the first one to be taken out. • The elements in a queue are added at one end called the rear and removed from the other one end called front. Like stacks, queues can be implemented either using arrays or linked lists. • When Rear = MAX – 1, where MAX is the size of the queue that is, MAX specifies the maximum number of elements in the queue. • If front = -1 and rear = -1, this means there is no element in the queue. • Advantage: Provides first-in, first-out data access • Disadvantage: Slow access to other items 9 7 18 14 36 45 0 FRONT = 1 2 3 4 REAR = 6 7 8 9
  • 9. © Oxford University Press 2011. All rights reserved. Tree • A binary tree is a data structure which is defined as a collection of elements called nodes. • Every node contains a "left" pointer, a "right" pointer, and a data element. • Every binary tree has a root element pointed by a "root" pointer. The root element is the topmost node in the tree. • If root = NULL, then it means the tree is empty. • Advantages: Provides quick search, insert and delete operations • Disadvantage: Complicated deletion algorithm 1 32 4 8 5 6 7 12 10 1 1 ROOT NODE T2T1 9
  • 10. © Oxford University Press 2011. All rights reserved. Graph • A graph is a collection of vertices (also called nodes) and edges that connect these vertices. • A graph is often viewed as a generalization of the tree structure, where instead of a having a purely parent-to-child relationship between tree nodes, any kind of complex relationships between the nodes can be represented. • While in trees, the nodes can have many children but only one parent, a graph on the other hand relaxes all such kinds of restrictions. • unlike trees, graphs do not have any root node. Rather, every node in the graph can be connected with any other node in the graph. When two nodes are connected via an edge, the two nodes are known as neighbors. • Advantages: Best models real-world situations • Disadvantages: Some algorithms are slow and very complex A D B C E
  • 11. © Oxford University Press 2011. All rights reserved. ABSTRACT DATA TYPE • An Abstract Data Type (ADT) is the way at which we look at a data structure, focusing on what it does and ignoring how it does its job. • For example, stack and queue are perfect examples of an abstract data type. We can implement both these ADTs using an array or a linked list. This demonstrates the "abstract" nature of stacks and queues. • In C, an Abstract Data Type can be a structure considered without regard to its implementation. It can be thought of as a "description" of the data in the structure with a list of operations that can be performed on the data within that structure. • The end user is not concerned about the details of how the methods carry out their tasks. They are only aware of the methods that are available to them and are concerned only about calling those methods and getting back the results but not HOW they work.
  • 12. © Oxford University Press 2011. All rights reserved. CODE DESCRIPTION typedef struct stack_Rep stack_Rep; instance representation record typedef stack_Rep *stack_T; pointer to a stack instance typedef void *stack_Item; value to be stored on stack stack_T create_stack(void); Create an empty stack instance void push(stack_T st, stack_Item v) Add an item at the top of the stack stack_Item pop(stack_T st); Remove the top item from the stack and return it int is_empty(stack_T st); Check whether stack is empty Stack.h to be used in abstract stack implementation #include <stack.h> stack_T s = create_stack(); int val = 09; s = push(t, &val); void *v = pop(s); if (is_empty(s)) { … } Implementation of abstract stack using stack.h
  • 13. © Oxford University Press 2011. All rights reserved. ALGORITHM • The typical meaning of "algorithm" is a formally defined procedure for performing some calculation. • An algorithm provides a blueprint to write a program to solve a particular problem. • It is considered to be an effective procedure for solving a problem in finite number of steps. That is, a well-defined algorithm always provides an answer and is guaranteed to terminate. • Algorithms are mainly used to achieve software re-use. Once we have an idea or a blueprint of a solution, we can implement in any high level language like C, C++, Java, so on and so forth. • Write an algorithm to find whether a number is even or odd • Step 1: Input the first number as A • Step 2: IF A%2 =0 • Then Print "EVEN" • ELSE • PRINT "ODD" • Step 3: END
  • 14. © Oxford University Press 2011. All rights reserved. TIME AND SPACE COMPLEXITY OF ALGORITHM • To analyze an algorithm means determining the amount of resources (such as time and storage) needed to execute it. Algorithms are generally designed to work with an arbitrary number of inputs, so the efficiency or complexity of an algorithm is stated in terms of time complexity and space complexity. • The time Complexity of an algorithm is basically the running time of the program as a function of the input size. On similar grounds, space complexity of an algorithm is the amount of computer memory required during the program execution, as a function of the input size • Time complexity of an algorithm depends on the number of machine instructions in which a program executes. This number is primarily dependant on the size of the program's input and the algorithm used. • The space needed by a program depends on: Fixed part, that varies with problem to problem. It includes space needed for storing instructions, constants, variables and structured variables (like arrays, structures) Variable part, that varies from program to program. It includes space needed for recursion stack, and for structured variables that are allocated space dynamically during the run-time of the program.
  • 15. © Oxford University Press 2011. All rights reserved. Calculating Algorithm Efficiency • If a function is linear (without any loops or recursions), the efficiency of that algorithm or the running time of that algorithm can be given as the number of instructions it contains. • If an algorithm contains certain loops or recursive functions then the efficiency of that algorithm may vary depending on the number of loops and the running time of each loop in the algorithm. • The efficiency of an algorithm is expressed in terms of the number of elements that has to be processed. So, if n is the number of elements, then the efficiency can be stated as f(n) = efficiency Linear loops for(i=0;i<n;i++) statement block f(n) = efficiency Logarithmic Loops for(i=1;i<n;i*=2) for(i=0;i<n;i/=2) statement block; statement block; f(n) = log n f(n) = log n
  • 16. © Oxford University Press 2011. All rights reserved. Calculating Algorithm Efficiency contd.Nested Loops • Total no. of iterations = no. of iterations in inner loop * no. of iterations in outer loop • In case of nested loops, we will analyze the efficiency of the algorithm based on whether it’s a linear logarithmic, quadratic or dependant quadratic nested loop. Linear logarithmic for(i=0;i<n;i++) for(j=1; j<n;j*=2) statement block; f(n)= n log n Quadratic Loop for(i=0;i<n;i++) for(j=1; j<n;j++) statement block; f(n) = n * n Dependent Quadratic for(i=0;i<n;i++) for(j=1; j<i;j++) statement block; f(n) = n (n + 1)/2 OR f(n) = n (n + 1)/2
  • 17. © Oxford University Press 2011. All rights reserved. BIG OH NOTATION • Big-Oh notation where the "O" stands for "order of" is concerned with what happens for very large values of n. • For example, if a sorting algorithm performs n2 operations to sort just n elements, then that algorithm would be described as an O(n2 ) algorithm. • When expressing complexity using Big Oh notation, constant multipliers are ignored. So a O(4n) algorithm is equivalent to O(n), which is how it should be written. • If f(n) and g(n) are functions defined on positive integer number n, then f(n) = O(g(n)) • That is, f of n is big oh of g of n if and only if there exists positive constants c and n, such that f (n) ≤ Cg(n) ≤ n • This means that for large amounts of data, f(n) will grow no more than a constant factor than g(n). Hence, g provides an upper bound.
  • 18. © Oxford University Press 2011. All rights reserved. Categories of Algorithms • Constant time algorithm that have running time complexity given as O(1) • Linear time algorithm that have running time complexity given as O(n) • Logarithmic time algorithm that have running time complexity given as O(log n) • Polynomial time algorithm that have running time complexity given as O(nk) where k>1 • Exponential time algorithm that have running time complexity given as O(2n ) Number of operations for different functions of n n O(1) O(log n) O(n) O(n log n) O(n2 ) O(n3 ) 1 1 1 1 1 1 1 2 1 1 2 2 4 8 4 1 2 4 8 16 64 8 1 3 8 24 64 512 16 1 4 16 64 256 4,096
  • 19. © Oxford University Press 2011. All rights reserved. NP- COMPLETE • In computational complexity theory, the complexity class NP-C (Non- deterministic Polynomial time- Complete), is a class of problems that exhibits two properties: • A set of problems is said to be NP is any given solution to the problem can be verified quickly in polynomial time. • If the problem can be solved quickly in polynomial time, then it implies that every problem in NP can be solved in polynomial time • Even if a given solution to a problem can be verified quickly, there is no known efficient way to locate a solution in the first place. Therefore, it is not wrong to say that solutions to NP-complete problems may not even be known. • A problem p in NP is also in NPC if and only if every other problem in NP can be transformed into p in polynomial time. • if any single problem in NP-complete can be solved quickly, then every problem in NP can also be quickly solved.