SlideShare a Scribd company logo
1 of 89
Insertion
Sort
Group Members:
• Shehneela Tanveer
(2779/FBAS/BSSE/F15/B)
• Hira Ahmed
(2779/FBAS/BSSE/F15/B)
• Fariha Habib
(2779/FBAS/BSSE/F15/B)
• Isma Tariq Hashmi
(2779/FBAS/BSSE/F15/B)
• Syeda Fazeela Zahir
(2779/FBAS/BSSE/F15/B)
• Tahira Bashir
(2779/FBAS/BSSE/F15/B)
Introduction
Insertion Sorting
•It is a simple Sorting algorithm which sorts the array by shifting elements
one
• by one. Following are some of the important characteristics of Insertion
Sort.
 It has one of the simplest implementation
 It is efficient for smaller data sets, but very inefficient for larger lists.
 Insertion Sort is adaptive, that means it reduces its total number of
steps if given a partially sorted list, hence it increases its efficiency.
 It is better than Selection Sort and Bubble Sort algorithms.
 Its space complexity is less, like Bubble Sorting, insertion sort also
requires a single additional memory space.
 It is Stable, as it does not change the relative order of elements with
equal keys
Insertion Sort
9 72 5 1 4 3 6
Example :
Insertion Sort
9 72 5 1 4 3 6
Sorte
d
sectio
n
We start by dividing the array in a sorted section and an
unsorted section. We put the first element as the only element in
the sorted section, and the rest of the array is the unsorted
section.
Insertion Sort
9 72 5 1 4 3 6
Sorte
d
sectio
n
Item
to
positi
on
The first element in the unsorted section is the next element
to be put into the correct position.
Insertion Sort
9 7
2
5 1 4 3 6
Item
to
positi
on
2
We copy the element to be placed into another variable so it doesn’t get
overwritten.
Insertion Sort
9 7
2
5 1 4 3 62
compare
If the previous position is more than the item being placed, copy
the value into the next position
Insertion Sort
9 7
2
5 1 4 3 69
If there are no more items in the sorted section to compare with, the
item to be placed must go at the front.
belongs here
Insertion Sort
9 72 5 1 4 3 6
Insertion Sort
9 72 5 1 4 3 6
Insertion Sort
9 72 5 1 4 3 6
Item
to
positi
on
Insertion Sort
9
7
2 5 1 4 3 67
compare
Insertion Sort
9
7
2 5 1 4 3 6
Copied from
previous
position
9
compare
If the item in the sorted section is less than the item to place, the
item to place goes after it in the array.
belongs here
Insertion Sort
972 5 1 4 3 6
Insertion Sort
972 5 1 4 3 6
Insertion Sort
972 5 1 4 3 6
Item
to
positi
on
Insertion Sort
972
5
1 4 3 65
compare
Insertion Sort
972
5
1 4 3 69
compare
Insertion Sort
972
5
1 4 3 67
compare
belongs here
Insertion Sort
972 5 1 4 3 6
Insertion Sort
972 5 1 4 3 6
Insertion Sort
972 5 1 4 3 6
Item
to
positi
on
Insertion Sort
972 5
1
4 3 61
compare
Insertion Sort
972 5
1
4 3 69
compare
Insertion Sort
972 5
1
4 3 67
compare
Insertion Sort
972 5
1
4 3 65
compare
Insertion Sort
972 5
1
4 3 62
belongs here
Insertion Sort
972 51 4 3 6
Insertion Sort
972 51 4 3 6
Insertion Sort
972 51 4 3 6
Item
to
positi
on
Insertion Sort
972 51
4
3 64
compare
Insertion Sort
972 51
4
3 69
compare
Insertion Sort
972 51
4
3 67
compare
Insertion Sort
972 51
4
3 6
belongs here
5
compare
Insertion Sort
972 51 4 3 6
Insertion Sort
972 51 4 3 6
Insertion Sort
972 51 4 3 6
Item
to
positi
on
Insertion Sort
972 51 4
3
63
compare
Insertion Sort
972 51 4
3
69
compare
Insertion Sort
972 51 4
3
67
compare
Insertion Sort
972 51 4
3
65
compare
Insertion Sort
972 51 4
3
64
compare
belongs here
Insertion Sort
972 51 43 6
Insertion Sort
972 51 43 6
Insertion Sort
972 51 43 6
Item
to
positi
on
Insertion Sort
972 51 43
6
6
compare
Insertion Sort
972 51 43
6
9
compare
Insertion Sort
972 51 43
6
7
compare
belongs here
Insertion Sort
972 51 43 6
Insertion Sort
972 51 43 6
SORTED!
Pseudo Code
• for i = 0 to n – 1
j = 1
while j > 0 and A[j] < A[j – 1]
swap(A[j], A[j-1])
j = j - 1
void insertion_sort (int arr[], int length)
{
int j,temp;
for (int i = 0; i < length; i++)
{
j = i;
while (j > 0 && arr[j] < arr[j-1])
{
temp = arr[j];
arr[j] = arr[j-1];
arr[j-1] = temp;
j--;
}
}
}
CODE OF INSERTION SORT
Best Times to Use Insertion Sort
• When the data sets are relatively small.
Moderately efficient
• When you want a quick easy
implementation.
Not hard to code Insertion sort.
• When data sets are mostly sorted already.
(1,2,4,6,3,2)
Worst Times to Use Insertion Sort
• When the data sets are relatively large.
– Because the running time is quadratic
• When data sets are completely unsorted
– Absolute worst case would be reverse
ordered. (9,8,7,6,5,4)
• Advantages
– Good running time for “almost sorted” arrays
(n)
– Simple implementation.
– Stable, i.e. does not change the relative order
of elements with equal keys
Disadvantages
It is less efficient on list containing more number of
elements.
As the number of elements increases the performance
of the program would be slow.
Insertion sort needs a large number of element shifts.
N^2/2 comparisons in worst and average case
Insertion sort
analysis
Insertion sort (A,n)
{
for i<-1 to n-1
{
value A [i]
hole  I
}
while( hole > O & & [ hole–1] > Value)
{
A [ hole ] <— A [hole–1]
hole <— hole–1
}
A [hole] <― value
}
}
Best case
Sorted array
1,2,3,4,5
T(N)= (C1 + C3) (N-1)
linear running time:T(n)=an+ b
the order of growth=0 (N)
The representation of (0(n)) called asympotic notation.
• Average case
the order of growth =0( N^2)
the no of comparison and shift
is less than the selection and
bubble sort.
• Hence it is better than
selection and bubble sort.
Worst case
• 5,4,3,2,1
T(N)= (C1 + C3) (N-1)+ N(N -1)/2 C2
quadratic running time:f(n)=an^2+ bn+ C
the order of growth =0( N ^2)
the order of growth provide us a means of
comparing the efficency of algorithm.
• The algorithm with lower worst case order of growth
are usually considerd to be more efficent.
Comparisons
Comparison with Bubble
Sort:
 In it we set the largest element at the end in each
iteration
 Time Complexity:
• Worst case: we have to do n comparisons for 1st
iteration, n-1 for next and n-2 for next until we
reach at 1.
Time complexity= O(n2)
• Best Case: when the list is already sorted
Time Complexity= O(n)
• Average Case:
Time Complexity=O(n2)
Comparison with
Selection Sort:
• In selection sort minimum element n the whole list
will be placed at rightmost
• Worst case: Time complexity= O(n2) because we
have to traverse the whole list
• Best Case: Time complexity= O(n2) because swaping
will must happen at least one time
• Average Case: Time complexity= O(n2)
Comparison with Merge Sort:
• Divide and Conquer Rule
• We divide the array recursively until it reach to one
element and then it get sorted according to comparisons
and then merged again
for k=1 to n
if(A[i]<B[j])
C[k]=A[i];
i++;
else if(A[i]>B[j])
C[k]=B[j]
j++
B
C(output)
A
i
j
k=1
n
Time Complexity:
• Best Case:
Time Complexity= O(nlogn)
• Worst Case:
Time Complexity= O(nlogn)
• Average Case:
• Time Complexity= O(nlogn)
Because we are dividing the array in this case, e.g if we
have 32 elements in array then we will have to divide 5
times….so it will take logn times for dividing and n times for
merging…. Total=nlogn
Any Questions ?

More Related Content

What's hot

linked list in data structure
linked list in data structure linked list in data structure
linked list in data structure shameen khan
 
Binary Search Tree in Data Structure
Binary Search Tree in Data StructureBinary Search Tree in Data Structure
Binary Search Tree in Data StructureDharita Chokshi
 
Bubble sort | Data structure |
Bubble sort | Data structure |Bubble sort | Data structure |
Bubble sort | Data structure |MdSaiful14
 
queue & its applications
queue & its applicationsqueue & its applications
queue & its applicationssomendra kumar
 
Insertion sort
Insertion sortInsertion sort
Insertion sortMYER301
 
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
 
Sorting Algorithms
Sorting AlgorithmsSorting Algorithms
Sorting AlgorithmsPranay Neema
 
SEARCHING AND SORTING ALGORITHMS
SEARCHING AND SORTING ALGORITHMSSEARCHING AND SORTING ALGORITHMS
SEARCHING AND SORTING ALGORITHMSGokul Hari
 
Presentation on queue
Presentation on queuePresentation on queue
Presentation on queueRojan Pariyar
 
STACKS IN DATASTRUCTURE
STACKS IN DATASTRUCTURESTACKS IN DATASTRUCTURE
STACKS IN DATASTRUCTUREArchie Jamwal
 
Searching techniques in Data Structure And Algorithm
Searching techniques in Data Structure And AlgorithmSearching techniques in Data Structure And Algorithm
Searching techniques in Data Structure And Algorithm03446940736
 

What's hot (20)

linked list in data structure
linked list in data structure linked list in data structure
linked list in data structure
 
Binary Search Tree in Data Structure
Binary Search Tree in Data StructureBinary Search Tree in Data Structure
Binary Search Tree in Data Structure
 
Bubble sort | Data structure |
Bubble sort | Data structure |Bubble sort | Data structure |
Bubble sort | Data structure |
 
Selection sorting
Selection sortingSelection sorting
Selection sorting
 
queue & its applications
queue & its applicationsqueue & its applications
queue & its applications
 
Bfs and Dfs
Bfs and DfsBfs and Dfs
Bfs and Dfs
 
Insertion sort
Insertion sort Insertion sort
Insertion sort
 
Insertion sort
Insertion sortInsertion sort
Insertion sort
 
Sorting
SortingSorting
Sorting
 
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
 
sorting and its types
sorting and its typessorting and its types
sorting and its types
 
Sorting Algorithms
Sorting AlgorithmsSorting Algorithms
Sorting Algorithms
 
SEARCHING AND SORTING ALGORITHMS
SEARCHING AND SORTING ALGORITHMSSEARCHING AND SORTING ALGORITHMS
SEARCHING AND SORTING ALGORITHMS
 
Presentation on queue
Presentation on queuePresentation on queue
Presentation on queue
 
Stacks
StacksStacks
Stacks
 
STACKS IN DATASTRUCTURE
STACKS IN DATASTRUCTURESTACKS IN DATASTRUCTURE
STACKS IN DATASTRUCTURE
 
Data Structure (Queue)
Data Structure (Queue)Data Structure (Queue)
Data Structure (Queue)
 
Stack and Queue
Stack and Queue Stack and Queue
Stack and Queue
 
Binary search
Binary searchBinary search
Binary search
 
Searching techniques in Data Structure And Algorithm
Searching techniques in Data Structure And AlgorithmSearching techniques in Data Structure And Algorithm
Searching techniques in Data Structure And Algorithm
 

Similar to Insertion Sorting

(Data Structure) Chapter11 searching & sorting
(Data Structure) Chapter11 searching & sorting(Data Structure) Chapter11 searching & sorting
(Data Structure) Chapter11 searching & sortingFadhil Ismail
 
Chapter 11 - Sorting and Searching
Chapter 11 - Sorting and SearchingChapter 11 - Sorting and Searching
Chapter 11 - Sorting and SearchingEduardo Bergavera
 
Algorithm & data structures lec4&5
Algorithm & data structures lec4&5Algorithm & data structures lec4&5
Algorithm & data structures lec4&5Abdul Khan
 
searching in data structure.pptx
searching in data structure.pptxsearching in data structure.pptx
searching in data structure.pptxchouguleamruta24
 
Analysis and Design of Algorithms -Sorting Algorithms and analysis
Analysis and Design of Algorithms -Sorting Algorithms and analysisAnalysis and Design of Algorithms -Sorting Algorithms and analysis
Analysis and Design of Algorithms -Sorting Algorithms and analysisRadhika Talaviya
 
Sorting algorithums > Data Structures & Algorithums
Sorting algorithums  > Data Structures & AlgorithumsSorting algorithums  > Data Structures & Algorithums
Sorting algorithums > Data Structures & AlgorithumsAin-ul-Moiz Khawaja
 
Rahat &amp; juhith
Rahat &amp; juhithRahat &amp; juhith
Rahat &amp; juhithRj Juhith
 
Binary search Algorithm
Binary search AlgorithmBinary search Algorithm
Binary search AlgorithmFazalRehman79
 
Sorting in data structures and algorithms , it has all the necessary points t...
Sorting in data structures and algorithms , it has all the necessary points t...Sorting in data structures and algorithms , it has all the necessary points t...
Sorting in data structures and algorithms , it has all the necessary points t...BhumikaBiyani1
 
Class13_Quicksort_Algorithm.pdf
Class13_Quicksort_Algorithm.pdfClass13_Quicksort_Algorithm.pdf
Class13_Quicksort_Algorithm.pdfAkashSingh625550
 
Sorting Techniques for Data Structures.pptx
Sorting Techniques for Data Structures.pptxSorting Techniques for Data Structures.pptx
Sorting Techniques for Data Structures.pptxKalpana Mohan
 
sorting-160810203705.pptx
sorting-160810203705.pptxsorting-160810203705.pptx
sorting-160810203705.pptxAnSHiKa187943
 

Similar to Insertion Sorting (20)

Unit 7 sorting
Unit   7 sortingUnit   7 sorting
Unit 7 sorting
 
Insertion and merge sort
Insertion and merge sortInsertion and merge sort
Insertion and merge sort
 
(Data Structure) Chapter11 searching & sorting
(Data Structure) Chapter11 searching & sorting(Data Structure) Chapter11 searching & sorting
(Data Structure) Chapter11 searching & sorting
 
Chapter 11 - Sorting and Searching
Chapter 11 - Sorting and SearchingChapter 11 - Sorting and Searching
Chapter 11 - Sorting and Searching
 
Unit vii sorting
Unit   vii sorting Unit   vii sorting
Unit vii sorting
 
Data Structures 6
Data Structures 6Data Structures 6
Data Structures 6
 
Algorithm & data structures lec4&5
Algorithm & data structures lec4&5Algorithm & data structures lec4&5
Algorithm & data structures lec4&5
 
searching in data structure.pptx
searching in data structure.pptxsearching in data structure.pptx
searching in data structure.pptx
 
Analysis and Design of Algorithms -Sorting Algorithms and analysis
Analysis and Design of Algorithms -Sorting Algorithms and analysisAnalysis and Design of Algorithms -Sorting Algorithms and analysis
Analysis and Design of Algorithms -Sorting Algorithms and analysis
 
Sorting algorithums > Data Structures & Algorithums
Sorting algorithums  > Data Structures & AlgorithumsSorting algorithums  > Data Structures & Algorithums
Sorting algorithums > Data Structures & Algorithums
 
Data Structure (MC501)
Data Structure (MC501)Data Structure (MC501)
Data Structure (MC501)
 
sorting-160810203705.pptx
sorting-160810203705.pptxsorting-160810203705.pptx
sorting-160810203705.pptx
 
Rahat &amp; juhith
Rahat &amp; juhithRahat &amp; juhith
Rahat &amp; juhith
 
Chapter 4 ds
Chapter 4 dsChapter 4 ds
Chapter 4 ds
 
Binary search Algorithm
Binary search AlgorithmBinary search Algorithm
Binary search Algorithm
 
Sorting in data structures and algorithms , it has all the necessary points t...
Sorting in data structures and algorithms , it has all the necessary points t...Sorting in data structures and algorithms , it has all the necessary points t...
Sorting in data structures and algorithms , it has all the necessary points t...
 
Class13_Quicksort_Algorithm.pdf
Class13_Quicksort_Algorithm.pdfClass13_Quicksort_Algorithm.pdf
Class13_Quicksort_Algorithm.pdf
 
Sorting Techniques for Data Structures.pptx
Sorting Techniques for Data Structures.pptxSorting Techniques for Data Structures.pptx
Sorting Techniques for Data Structures.pptx
 
my docoment
my docomentmy docoment
my docoment
 
sorting-160810203705.pptx
sorting-160810203705.pptxsorting-160810203705.pptx
sorting-160810203705.pptx
 

Recently uploaded

DATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage exampleDATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage examplePragyanshuParadkar1
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEroselinkalist12
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptSAURABHKUMAR892774
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)Dr SOUNDIRARAJ N
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfAsst.prof M.Gokilavani
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...Chandu841456
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 

Recently uploaded (20)

DATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage exampleDATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage example
 
Design and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdfDesign and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdf
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.ppt
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 

Insertion Sorting