SlideShare a Scribd company logo
ALGORITHM
ALGORITHM
SORT
Selection Sort Quick Sort
ALGORITHM
SORT INTRO
What is Sort?
ALGORITHM
SORT INTRO
Make data in Sequence
4 3 8 6 7 13 10 14 9
3 4 6 7 8 9 10 13 14
ALGORITHM
SORT INTRO
Make data in Sequence
Key
(comparing data)
Sort Order
(Ascending, Descending)
Sort
Efficiency
(time complexity)
Sort
Stability
(keep sort order)
ALGORITHM
SORT Selection Sort
Selection Sort
ALGORITHM
SORT Selection Sort
select best-fit-data every time
s s d d .. d d d d
sorted unsorted
select data fits this position
ALGORITHM
SORT Selection Sort
4 3 8 6 7 13 10 14 9
Selection Sort in Ascend order
Min Data
unsorted
ALGORITHM
SORT Selection Sort
3 4 8 6 7 13 10 14 9
Selection Sort in Ascend order
unsorted
swap
sorted
ALGORITHM
SORT Selection Sort
3 4 8 6 7 13 10 14 9
Selection Sort in Ascend order
unsortedsorted
Min Data
ALGORITHM
SORT Selection Sort
3 4 8 6 7 13 10 14 9
Selection Sort in Ascend order
unsortedsorted
ALGORITHM
SORT Selection Sort
3 4 8 6 7 13 10 14 9
Selection Sort in Ascend order
unsortedsorted
Min Data
ALGORITHM
SORT Selection Sort
3 4 6 8 7 13 10 14 9
Selection Sort in Ascend order
unsortedsorted
swap
ALGORITHM
SORT Selection Sort
3 4 6 8 7 13 10 14 9
Selection Sort in Ascend order
unsortedsorted
Min Data
ALGORITHM
SORT Selection Sort
3 4 6 7 8 13 10 14 9
Selection Sort in Ascend order
unsortedsorted
swap
ALGORITHM
SORT Selection Sort
3 4 6 7 8 13 10 14 9
Selection Sort in Ascend order
unsortedsorted
Min Data
ALGORITHM
SORT Selection Sort
3 4 6 7 8 13 10 14 9
Selection Sort in Ascend order
unsortedsorted
ALGORITHM
SORT Selection Sort
3 4 6 7 8 13 10 14 9
Selection Sort in Ascend order
unsortedsorted
Min Data
ALGORITHM
SORT Selection Sort
3 4 6 7 8 9 10 14 13
Selection Sort in Ascend order
unsortedsorted
swap
ALGORITHM
SORT Selection Sort
3 4 6 7 8 9 10 14 13
Selection Sort in Ascend order
unsortedsorted
Min Data
ALGORITHM
SORT Selection Sort
3 4 6 7 8 9 10 14 13
Selection Sort in Ascend order
unsortedsorted
ALGORITHM
SORT Selection Sort
3 4 6 7 8 9 10 14 13
Selection Sort in Ascend order
unsortedsorted
Min Data
ALGORITHM
SORT Selection Sort
3 4 6 7 8 9 10 13 14
Selection Sort in Ascend order
unsortedsorted
swap
ALGORITHM
SORT Selection Sort
3 4 6 7 8 9 10 13 14
Selection Sort in Ascend order
sorted
ALGORITHM
SORT Quick Sort
Quick Sort
divide dataset with pivot
s … p ... d d d d d
less than p bigger than p
pivot
ALGORITHM
SORT Quick Sort
select pivot
ALGORITHM
SORT Quick Sort
4 3 8 6 7 13 2 14 9
pivot
left right
Move left to first data bigger than pivot
ALGORITHM
SORT Quick Sort
4 3 8 6 7 13 2 14 9
pivot
left right
Move right to first data less than pivot
ALGORITHM
SORT Quick Sort
4 3 8 6 7 13 2 14 9
pivot
left right
swap left and right
ALGORITHM
SORT Quick Sort
4 3 2 6 7 13 8 14 9
pivot
left right
Move left to first data bigger than pivot
ALGORITHM
SORT Quick Sort
4 3 2 6 7 13 8 14 9
pivot
left right
Move right to first data less than pivot
ALGORITHM
SORT Quick Sort
4 3 2 6 7 13 8 14 9
pivot
left
right
swap right with pivot
ALGORITHM
SORT Quick Sort
2 3 4 6 7 13 8 14 9
pivot
swap right with pivot
ALGORITHM
SORT Quick Sort
2 3 4 6 7 13 8 14 9
pivot
less than 4 bigger than 4
sorting problem divided into two problems
ALGORITHM
SORT Quick Sort
2 3 4 6 7 13 8 14 9
less than 4 bigger than 4
sort left partition
ALGORITHM
SORT Quick Sort
2 3
pivot
left
right
Move left to first data bigger than pivot
ALGORITHM
SORT Quick Sort
2 3
pivot
left
right
Move right to first data less than pivot
ALGORITHM
SORT Quick Sort
2 3
pivot
left
right
sorted
ALGORITHM
SORT Quick Sort
2 3
try right part
ALGORITHM
SORT Quick Sort
2 3 4 6 7 13 8 14 9
sorted bigger than 4
sort right partition
ALGORITHM
SORT Quick Sort
6 7 13 8 14 9
pivot
left
right
ALGORITHM
SORT Quick Sort
6 7 13 8 14 9
pivot
left
right
Move left to first data bigger than pivot
ALGORITHM
SORT Quick Sort
6 7 13 8 14 9
pivot
left
right
Move right to first data less than pivot
ALGORITHM
SORT Quick Sort
sorting problem divided into two problems but left is none
6 7 13 8 14 9…
bigger than 6
ALGORITHM
SORT Quick Sort
sort right partition
7 13 8 14 9
pivot
left
right
ALGORITHM
SORT Quick Sort
7 13 8 14 9
pivot
left
right
Move left to first data bigger than pivot
ALGORITHM
SORT Quick Sort
7 13 8 14 9
pivot
left
right
Move right to first data less than pivot
ALGORITHM
SORT Quick Sort
7 13 8 14 9…
bigger than 7
sorting problem divided into two problems but left is none
ALGORITHM
SORT Quick Sort
13 8 14 9
sort right partition
pivot
left
right
ALGORITHM
SORT Quick Sort
13 8 14 9
pivot
left
right
Move left to first data bigger than pivot
ALGORITHM
SORT Quick Sort
13 8 14 9
pivot
left
Move right to first data less than pivot
right
ALGORITHM
SORT Quick Sort
13 8 9 14
pivot
left
right
swap left and right
ALGORITHM
SORT Quick Sort
9 8 13 14
pivot
swap pivot and right
right
ALGORITHM
SORT Quick Sort
9 8 13 14
less than 13 bigger than 13
sorting problem divided into two problems
ALGORITHM
SORT Quick Sort
9 8 13 14
less than 13 sorted
no need to sort one element
ALGORITHM
SORT Quick Sort
9 8
sort left partition
pivot
left
right
ALGORITHM
SORT Quick Sort
9 8
pivot
left
right
Move left to first data bigger than pivot
ALGORITHM
SORT Quick Sort
9 8
pivot
left
right
Move right to first data less than pivot
ALGORITHM
SORT Quick Sort
8
Swap left and right
9
pivot
ALGORITHM
SORT Quick Sort
8
sorted
9
ALGORITHM
SORT Quick Sort
8
sorted
9
ALGORITHM
SORT Quick Sort
8 9 13 14
less than 13 sorted
sorted
ALGORITHM
SORT Quick Sort
sorted
7 8 9 13 14
bigger than 7
ALGORITHM
SORT Quick Sort
sorted
6 7 8 9 13 14
bigger than 6
sorted
ALGORITHM
SORT Quick Sort
2 3 4 6 7 8 9 13 14
sorted bigger than 4
sort complete
ALGORITHM
SORT Quick Sort
2 3 4 6 7 8 9 13 14
sorted

More Related Content

Recently uploaded (20)

PDF
Digger Solo: Semantic search and maps for your local files
seanpedersen96
 
PPTX
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
PDF
How to Hire AI Developers_ Step-by-Step Guide in 2025.pdf
DianApps Technologies
 
PPTX
Agentic Automation Journey Session 1/5: Context Grounding and Autopilot for E...
klpathrudu
 
PPTX
Milwaukee Marketo User Group - Summer Road Trip: Mapping and Personalizing Yo...
bbedford2
 
PPTX
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
PPTX
Foundations of Marketo Engage - Powering Campaigns with Marketo Personalization
bbedford2
 
PDF
The 5 Reasons for IT Maintenance - Arna Softech
Arna Softech
 
PDF
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 
PPTX
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
PDF
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
PDF
iTop VPN With Crack Lifetime Activation Key-CODE
utfefguu
 
PPTX
Finding Your License Details in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PPTX
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PPTX
Hardware(Central Processing Unit ) CU and ALU
RizwanaKalsoom2
 
PPTX
Agentic Automation: Build & Deploy Your First UiPath Agent
klpathrudu
 
PDF
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
PDF
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
PDF
Wondershare PDFelement Pro Crack for MacOS New Version Latest 2025
bashirkhan333g
 
PDF
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
Digger Solo: Semantic search and maps for your local files
seanpedersen96
 
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
How to Hire AI Developers_ Step-by-Step Guide in 2025.pdf
DianApps Technologies
 
Agentic Automation Journey Session 1/5: Context Grounding and Autopilot for E...
klpathrudu
 
Milwaukee Marketo User Group - Summer Road Trip: Mapping and Personalizing Yo...
bbedford2
 
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
Foundations of Marketo Engage - Powering Campaigns with Marketo Personalization
bbedford2
 
The 5 Reasons for IT Maintenance - Arna Softech
Arna Softech
 
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
iTop VPN With Crack Lifetime Activation Key-CODE
utfefguu
 
Finding Your License Details in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Hardware(Central Processing Unit ) CU and ALU
RizwanaKalsoom2
 
Agentic Automation: Build & Deploy Your First UiPath Agent
klpathrudu
 
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
Wondershare PDFelement Pro Crack for MacOS New Version Latest 2025
bashirkhan333g
 
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 

Featured (20)

PDF
Artificial Intelligence, Data and Competition – SCHREPEL – June 2024 OECD dis...
OECD Directorate for Financial and Enterprise Affairs
 
PDF
How to Leverage AI to Boost Employee Wellness - Lydia Di Francesco - SocialHR...
SocialHRCamp
 
PDF
2024 State of Marketing Report – by Hubspot
Marius Sescu
 
PDF
Everything You Need To Know About ChatGPT
Expeed Software
 
PDF
Product Design Trends in 2024 | Teenage Engineerings
Pixeldarts
 
PDF
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
PDF
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
marketingartwork
 
PDF
Skeleton Culture Code
Skeleton Technologies
 
PDF
PEPSICO Presentation to CAGNY Conference Feb 2024
Neil Kimberley
 
PDF
Content Methodology: A Best Practices Report (Webinar)
contently
 
PPTX
How to Prepare For a Successful Job Search for 2024
Albert Qian
 
PDF
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 
PDF
Trends In Paid Search: Navigating The Digital Landscape In 2024
Search Engine Journal
 
PDF
5 Public speaking tips from TED - Visualized summary
SpeakerHub
 
PDF
ChatGPT and the Future of Work - Clark Boyd
Clark Boyd
 
PDF
Getting into the tech field. what next
Tessa Mero
 
PDF
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Lily Ray
 
PDF
How to have difficult conversations
Rajiv Jayarajah, MAppComm, ACC
 
PDF
Introduction to Data Science
Christy Abraham Joy
 
PDF
Time Management & Productivity - Best Practices
Vit Horky
 
Artificial Intelligence, Data and Competition – SCHREPEL – June 2024 OECD dis...
OECD Directorate for Financial and Enterprise Affairs
 
How to Leverage AI to Boost Employee Wellness - Lydia Di Francesco - SocialHR...
SocialHRCamp
 
2024 State of Marketing Report – by Hubspot
Marius Sescu
 
Everything You Need To Know About ChatGPT
Expeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Pixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
marketingartwork
 
Skeleton Culture Code
Skeleton Technologies
 
PEPSICO Presentation to CAGNY Conference Feb 2024
Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
contently
 
How to Prepare For a Successful Job Search for 2024
Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
SpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
Clark Boyd
 
Getting into the tech field. what next
Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Lily Ray
 
How to have difficult conversations
Rajiv Jayarajah, MAppComm, ACC
 
Introduction to Data Science
Christy Abraham Joy
 
Time Management & Productivity - Best Practices
Vit Horky
 
Ad

Intersection Study - Algorithm(Sort)