SlideShare a Scribd company logo
1 of 82
• A Presentation topic for c++ topic
• A Good style and appreciated
Sorting
 Sorting takes an unordered collection and
makes it an ordered one.
512354277 101
1 2 3 4 5 6
5 12 35 42 77 101
1 2 3 4 5 6
Introduction: Bubble Sort
Also called Exchange sort.
It repeatedly visits the array and compares two items at a
time. It swaps these two items if they are in the wrong order.
It continues to visit the array until no swaps are needed that
means the array is sorted.
674523 14 6 3398 42
The First “Bubble Up”
674523 14 6 3398 42
The First “Bubble Up”
674523 14 6 3398 42
Swap
The First “Bubble Up”
674598 14 6 3323 42
Swap
The First “Bubble Up”
674598 14 6 3323 42
The First “Bubble Up”
674598 14 6 3323 42
Swap
The First “Bubble Up”
679845 14 6 3323 42
Swap
The First “Bubble Up”
679845 14 6 3323 42
The First “Bubble Up”
679845 14 6 3323 42
Swap
The First “Bubble Up”
671445 98 6 3323 42
Swap
The First “Bubble Up”
671445 98 6 3323 42
The First “Bubble Up”
671445 98 6 3323 42
Swap
The First “Bubble Up”
671445 6 98 3323 42
Swap
The First “Bubble Up”
671445 6 98 3323 42
The First “Bubble Up”
671445 6 98 3323 42
Swap
The First “Bubble Up”
981445 6 67 3323 42
Swap
The First “Bubble Up”
981445 6 67 3323 42
The First “Bubble Up”
981445 6 67 3323 42
Swap
The First “Bubble Up”
331445 6 67 9823 42
Swap
The First “Bubble Up”
331445 6 67 9823 42
The First “Bubble Up”
331445 6 67 9823 42
Swap
The First “Bubble Up”
331445 6 67 4223 98
Swap
The First “Bubble Up”
331445 6 67 4223 98
Finished first “Bubble Up”
The First “Bubble Up”
The Second “Bubble Up”
331445 6 67 4223 98
The Second “Bubble Up”
331445 6 67 4223 98
No Swap
The Second “Bubble Up”
331445 6 67 4223 98
The Second “Bubble Up”
331445 6 67 4223 98
Swap
The Second “Bubble Up”
334514 6 67 4223 98
Swap
The Second “Bubble Up”
334514 6 67 4223 98
The Second “Bubble Up”
334514 6 67 4223 98
Swap
The Second “Bubble Up”
33614 45 67 4223 98
Swap
The Second “Bubble Up”
33614 45 67 4223 98
The Second “Bubble Up”
33614 45 67 4223 98
No Swap
The Second “Bubble Up”
33614 45 67 4223 98
The Second “Bubble Up”
33614 45 67 4223 98
Swap
The Second “Bubble Up”
67614 45 33 4223 98
Swap
The Second “Bubble Up”
67614 45 33 4223 98
The Second “Bubble Up”
67614 45 33 4223 98
Swap
The Second “Bubble Up”
42614 45 33 6723 98
Swap
42614 45 33 6723 98
Finished second “Bubble Up”
The Second “Bubble Up”
The Third “Bubble Up”
42614 45 33 6723 98
The Third “Bubble Up”
42614 45 33 6723 98
Swap
The Third “Bubble Up”
42623 45 33 6714 98
Swap
The Third “Bubble Up”
42623 45 33 6714 98
The Third “Bubble Up”
42623 45 33 6714 98
Swap
The Third “Bubble Up”
42236 45 33 6714 98
Swap
The Third “Bubble Up”
42236 45 33 6714 98
The Third “Bubble Up”
42236 45 33 6714 98
No Swap
The Third “Bubble Up”
42236 45 33 6714 98
The Third “Bubble Up”
42236 45 33 6714 98
Swap
The Third “Bubble Up”
42236 33 45 6714 98
Swap
The Third “Bubble Up”
42236 33 45 6714 98
The Third “Bubble Up”
42236 33 45 6714 98
Swap
The Third “Bubble Up”
45236 33 42 6714 98
Swap
After Third Pass of Outer Loop
45236 33 42 6714 98
Finished third “Bubble Up”
The Fourth “Bubble Up”
45236 33 42 6714 98
The Fourth “Bubble Up”
45236 33 42 6714 98
Swap
The Fourth “Bubble Up”
452314 33 42 676 98
Swap
The Fourth “Bubble Up”
452314 33 42 676 98
The Fourth “Bubble Up”
452314 33 42 676 98
No Swap
The Fourth “Bubble Up”
452314 33 42 676 98
The Fourth “Bubble Up”
452314 33 42 676 98
No Swap
The Fourth “Bubble Up”
452314 33 42 676 98
The Fourth “Bubble Up”
452314 33 42 676 98
No Swap
452314 33 42 676 98
Finished fourth “Bubble Up”
After Fourth Pass of Outer Loop
The Fifth “Bubble Up”
452314 33 42 676 98
The Fifth “Bubble Up”
452314 33 42 676 98
No Swap
The Fifth “Bubble Up”
452314 33 42 676 98
The Fifth “Bubble Up”
452314 33 42 676 98
No Swap
The Fifth “Bubble Up”
452314 33 42 676 98
The Fifth “Bubble Up”
452314 33 42 676 98
No Swap
After Fifth Pass of Outer Loop
452314 33 42 676 98
Finished fifth “Bubble Up”
452314 33 42 676 98
We did not do any swapping,
so all of the other elements
must be correctly placed.
We can “skip” the last two
passes of the outer loop.
Program
void main()
{
int arr[5],i,j,tem;
cout<<“Enter Five Values”;
for(i=0,i<5,i++)
cin>>arr[i];
cout<<“The origanal values in array:n”;
for(i=0;i<5;i++)
cout<<arr[i]<<“ “;
for(i=0;i<5;i++)
for(j=0;j<4;j++)
If(arr[ j ]>arr[ j+1 ]
{
tem=arr[ j ];
arr[ j ]=arr[ j+1 ];
arr[ j+1]=tem;
}
cout<<“n The sorted array: n”;
for(i=0;i<5;i++)
cout<<arr[ i ]<<“ “;
getch();
}

More Related Content

What's hot (20)

Ppt bubble sort
Ppt bubble sortPpt bubble sort
Ppt bubble sort
 
Shell sort
Shell sortShell sort
Shell sort
 
Shell sort in Data Structure Using C
Shell sort in Data Structure Using CShell sort in Data Structure Using C
Shell sort in Data Structure Using C
 
Sorting
SortingSorting
Sorting
 
Radix and Shell sort
Radix and Shell sortRadix and Shell sort
Radix and Shell sort
 
Data Structures - Lecture 8 [Sorting Algorithms]
Data Structures - Lecture 8 [Sorting Algorithms]Data Structures - Lecture 8 [Sorting Algorithms]
Data Structures - Lecture 8 [Sorting Algorithms]
 
1.5 binary search tree
1.5 binary search tree1.5 binary search tree
1.5 binary search tree
 
Linked List
Linked ListLinked List
Linked List
 
Linked list
Linked listLinked list
Linked list
 
Merge sort
Merge sortMerge sort
Merge sort
 
Tree Traversal
Tree TraversalTree Traversal
Tree Traversal
 
Shell sorting
Shell sortingShell sorting
Shell sorting
 
Selection sort
Selection sortSelection sort
Selection sort
 
My lectures circular queue
My lectures circular queueMy lectures circular queue
My lectures circular queue
 
linear search and binary search
linear search and binary searchlinear search and binary search
linear search and binary search
 
Sorting algorithms
Sorting algorithmsSorting algorithms
Sorting algorithms
 
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
 
DSA Lab Manual C Scheme.pdf
DSA Lab Manual C Scheme.pdfDSA Lab Manual C Scheme.pdf
DSA Lab Manual C Scheme.pdf
 
Tower of hanoi
Tower of hanoiTower of hanoi
Tower of hanoi
 
Insertion Sort
Insertion SortInsertion Sort
Insertion Sort
 

Viewers also liked (18)

Bubble sort
Bubble sort Bubble sort
Bubble sort
 
Selection sort
Selection sortSelection sort
Selection sort
 
Sorting Algorithms
Sorting AlgorithmsSorting Algorithms
Sorting Algorithms
 
Selection sort
Selection sortSelection sort
Selection sort
 
Data Structures - Searching & sorting
Data Structures - Searching & sortingData Structures - Searching & sorting
Data Structures - Searching & sorting
 
Sorting
SortingSorting
Sorting
 
Bubble sort
Bubble sortBubble sort
Bubble sort
 
Working of Merge Sort Code
Working of Merge Sort CodeWorking of Merge Sort Code
Working of Merge Sort Code
 
Python Day1
Python Day1Python Day1
Python Day1
 
Data Structure Sorting
Data Structure SortingData Structure Sorting
Data Structure Sorting
 
Sorting
SortingSorting
Sorting
 
8 Pointers
8 Pointers8 Pointers
8 Pointers
 
sort search in C
 sort search in C  sort search in C
sort search in C
 
Operating Systems - Intro to C++
Operating Systems - Intro to C++Operating Systems - Intro to C++
Operating Systems - Intro to C++
 
Linear and Bianry search
Linear and Bianry searchLinear and Bianry search
Linear and Bianry search
 
Algorithms
AlgorithmsAlgorithms
Algorithms
 
tecnology els virus
tecnology els virustecnology els virus
tecnology els virus
 
Investment bank
Investment bankInvestment bank
Investment bank
 

Similar to Bubble sort a best presentation topic

Sorting bubble-sort anim
Sorting   bubble-sort animSorting   bubble-sort anim
Sorting bubble-sort animFajar Zain
 
Sorting techniques Anil Dutt
Sorting techniques Anil DuttSorting techniques Anil Dutt
Sorting techniques Anil DuttAnil Dutt
 
Bubble sort/ Exchange sort Algorithmdata structures and algorithms-2018,bs it...
Bubble sort/ Exchange sort Algorithmdata structures and algorithms-2018,bs it...Bubble sort/ Exchange sort Algorithmdata structures and algorithms-2018,bs it...
Bubble sort/ Exchange sort Algorithmdata structures and algorithms-2018,bs it...Muhammad Abuzar
 
Bubble Sort Python
Bubble Sort PythonBubble Sort Python
Bubble Sort PythonValneyFilho1
 
sorting techniques PPT.ppt
sorting techniques PPT.pptsorting techniques PPT.ppt
sorting techniques PPT.pptAnilVastav
 

Similar to Bubble sort a best presentation topic (9)

Bubble sort
Bubble sortBubble sort
Bubble sort
 
Bubble sort
Bubble sortBubble sort
Bubble sort
 
Sorting bubble-sort anim
Sorting   bubble-sort animSorting   bubble-sort anim
Sorting bubble-sort anim
 
Sorting techniques Anil Dutt
Sorting techniques Anil DuttSorting techniques Anil Dutt
Sorting techniques Anil Dutt
 
Bubble sort/ Exchange sort Algorithmdata structures and algorithms-2018,bs it...
Bubble sort/ Exchange sort Algorithmdata structures and algorithms-2018,bs it...Bubble sort/ Exchange sort Algorithmdata structures and algorithms-2018,bs it...
Bubble sort/ Exchange sort Algorithmdata structures and algorithms-2018,bs it...
 
cs1311lecture16wdl.ppt
cs1311lecture16wdl.pptcs1311lecture16wdl.ppt
cs1311lecture16wdl.ppt
 
Bubble Sort Python
Bubble Sort PythonBubble Sort Python
Bubble Sort Python
 
Bubble Sort.ppt
Bubble Sort.pptBubble Sort.ppt
Bubble Sort.ppt
 
sorting techniques PPT.ppt
sorting techniques PPT.pptsorting techniques PPT.ppt
sorting techniques PPT.ppt
 

Recently uploaded

4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptxSherlyMaeNeri
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Culture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptxCulture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptxPoojaSen20
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxMaryGraceBautista27
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 

Recently uploaded (20)

4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptx
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
Culture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptxCulture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptx
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptx
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 

Bubble sort a best presentation topic