Sorting

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/6

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

7 Terms

1
New cards

Selection sort

Finds the lowest value and moves it to the front. Repeats for the rest of the array.

2
New cards

Bubble sort

Compares neighboring elements and swaps them if needed, pushing larger values to the end.

3
New cards

Insertion sort

Takes one element at a time and places it into its correct position in the already sorted part.

4
New cards

Merge sort

Splits the array into smaller pieces, sorts them, and joins them back together in order.

5
New cards

Quick sort

Uses a pivot to divide the array into two parts, then recursively sorts each part.

6
New cards

Bucket sort

Groups elements into categories, sorts each group, then combines them all.

7
New cards

Radix sort

Processes numbers by digit, starting from the least significant, using stable grouping each time.