SlideShare une entreprise Scribd logo
1  sur  57
Algorithms in Java
Lesson 1: Bubble sort
2
Algorithms in Java
Bubble sort:
7 3 6 5 1 9 2 4 8
3
Algorithms in Java
Bubble sort:
[7] [3] 6 5 1 9 2 4 8
4
Algorithms in Java
Bubble sort:
[3] [7] 6 5 1 9 2 4 8
5
Algorithms in Java
Bubble sort:
3 [7] [6] 5 1 9 2 4 8
6
Algorithms in Java
Bubble sort:
3 [6] [7] 5 1 9 2 4 8
7
Algorithms in Java
Bubble sort:
3 6 [7] [5] 1 9 2 4 8
8
Algorithms in Java
Bubble sort:
3 6 [5] [7] 1 9 2 4 8
9
Algorithms in Java
Bubble sort:
3 6 5 [7] [1] 9 2 4 8
10
Algorithms in Java
Bubble sort:
3 6 5 [1] [7] 9 2 4 8
11
Algorithms in Java
Bubble sort:
3 6 5 1 [7] [9] 2 4 8
12
Algorithms in Java
Bubble sort:
3 6 5 1 7 [9] [2] 4 8
13
Algorithms in Java
Bubble sort:
3 6 5 1 7 [2] [9] 4 8
14
Algorithms in Java
Bubble sort:
3 6 5 1 7 2 [9] [4] 8
15
Algorithms in Java
Bubble sort:
3 6 5 1 7 2 [4] [9] 8
16
Algorithms in Java
Bubble sort:
3 6 5 1 7 2 4 [9] [8]
17
Algorithms in Java
Bubble sort:
3 6 5 1 7 2 4 [8] [9]
18
Algorithms in Java
Bubble sort:
3 6 5 1 7 2 4 8 9
The last element of the array is in the correct spot. Next cycle
will not include 9.
19
Algorithms in Java
Bubble sort:
[3] [6] 5 1 7 2 4 8 9
20
Algorithms in Java
Bubble sort:
3 [6] [5] 1 7 2 4 8 9
21
Algorithms in Java
Bubble sort:
3 [5] [6] 1 7 2 4 8 9
22
Algorithms in Java
Bubble sort:
3 5 [6] [1] 7 2 4 8 9
23
Algorithms in Java
Bubble sort:
3 5 [1] [6] 7 2 4 8 9
24
Algorithms in Java
Bubble sort:
3 5 1 [6] [7] 2 4 8 9
25
Algorithms in Java
Bubble sort:
3 5 1 6 [7] [2] 4 8 9
26
Algorithms in Java
Bubble sort:
3 5 1 6 [2] [7] 4 8 9
27
Algorithms in Java
Bubble sort:
3 5 1 6 2 [7] [4] 8 9
28
Algorithms in Java
Bubble sort:
3 5 1 6 2 [4] [7] 8 9
29
Algorithms in Java
Bubble sort:
3 5 1 6 2 4 [7] [8] 9
30
Algorithms in Java
Bubble sort:
3 5 1 6 2 4 7 8 9
Now 8 and 9 are in the correct spot. Next cycle will skip both
31
Algorithms in Java
Bubble sort:
[3] [5] 1 6 2 4 7 8 9
32
Algorithms in Java
Bubble sort:
3 [5] [1] 6 2 4 7 8 9
33
Algorithms in Java
Bubble sort:
3 [1] [5] 6 2 4 7 8 9
34
Algorithms in Java
Bubble sort:
3 1 [5] [6] 2 4 7 8 9
35
Algorithms in Java
Bubble sort:
3 1 5 [6] [2] 4 7 8 9
36
Algorithms in Java
Bubble sort:
3 1 5 [2] [6] 4 7 8 9
37
Algorithms in Java
Bubble sort:
3 1 5 2 [6] [4] 7 8 9
38
Algorithms in Java
Bubble sort:
3 1 5 2 [4] [6] 7 8 9
39
Algorithms in Java
Bubble sort:
3 1 5 2 4 [6] [7] 8 9
40
Algorithms in Java
Bubble sort:
3 1 5 2 4 6 7 8 9
Once again the last number has been put in the correct
location: next cycles will skip 7, 8 and 9
41
Algorithms in Java
Bubble sort:
[3] [1] 5 2 4 6 7 8 9
42
Algorithms in Java
Bubble sort:
[1] [3] 5 2 4 6 7 8 9
43
Algorithms in Java
Bubble sort:
1 [3] [5] 2 4 6 7 8 9
44
Algorithms in Java
Bubble sort:
1 3 [5] [2] 4 6 7 8 9
45
Algorithms in Java
Bubble sort:
1 3 [2] [5] 4 6 7 8 9
46
Algorithms in Java
Bubble sort:
1 3 2 [5] [4] 6 7 8 9
47
Algorithms in Java
Bubble sort:
1 3 2 [4] [5] 6 7 8 9
48
Algorithms in Java
Bubble sort:
1 3 2 4 [5] [6] 7 8 9
49
Algorithms in Java
Bubble sort:
1 3 2 4 5 6 7 8 9
Next cycle will skip 6, 7, 8 and 9
50
Algorithms in Java
Bubble sort:
[1] [3] 2 4 5 6 7 8 9
51
Algorithms in Java
Bubble sort:
1 [3] [2] 4 5 6 7 8 9
52
Algorithms in Java
Bubble sort:
1 [2] [3] 4 5 6 7 8 9
At this stage the array is ordered. However as the algorithm is
not aware of this, the remaining cycles will run anyway
53
Algorithms in Java
Bubble sort:
1 2 [3] [4] 5 6 7 8 9
54
Algorithms in Java
Bubble sort:
1 2 3 [4] [5] 6 7 8 9
55
Algorithms in Java
Bubble sort:
1 2 3 4 5 6 7 8 9
56
Algorithms in Java
Bubble sort:
[1] [2] 3 4 5 6 7 8 9
And so on...
57
Algorithms in Java
Bubble sort:
1) Bigger arrays take longer than smaller ones as this
algorithm runs in O(N2
), as N = number of elements of the
array
2) Extremely disordered arrays take longer than fairly ordered
ones as less swaps are necessary

Contenu connexe

Dernier

%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
masabamasaba
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
masabamasaba
 

Dernier (20)

%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
WSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - KeynoteWSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - Keynote
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
WSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security Program
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptx
 
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
 

En vedette

Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them wellGood Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Saba Software
 
Introduction to C Programming Language
Introduction to C Programming LanguageIntroduction to C Programming Language
Introduction to C Programming Language
Simplilearn
 

En vedette (20)

How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 
More than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike RoutesMore than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike Routes
 
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
 
Barbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationBarbie - Brand Strategy Presentation
Barbie - Brand Strategy Presentation
 
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them wellGood Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
 
Introduction to C Programming Language
Introduction to C Programming LanguageIntroduction to C Programming Language
Introduction to C Programming Language
 

Algorithms In Java | Bubble Sort | Full Code Shown