searching and sorting algorithms

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/11

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

12 Terms

1
New cards
Binary Search
A searching algorithm that divides the search space in half each time until it finds the target, faster than linear but requires the array to be sorted
2
New cards
Linear Search
A searching algorithm which looks at every element in turn until it finds the target, it is slow but works even on unsorted data
3
New cards
Efficiency
The processing time required to run an algorithm, can be poor for some simple algorithms like linear search or bubble sort
4
New cards
Insertion Sort
A sorting algorithm which checks each element and inserts into the correct place each time. Slightly better than Bubble Sort but still not very efficient
5
New cards
Merge Sort
A very efficient sorting algorithm that repeatedly breaks down a list into smaller lists, then repeatedly merges them back together in order
6
New cards
Bubble Sort
A sorting algorithm that passes over the list many times, swapping adjacent items if they are in the wrong order. Not very efficient.
7
New cards
Sorting algorithm
Any algorithm that puts data in order, examples are bubble, insertion and merge
8
New cards
Searching algorithm
Any algorithm that finds data within a data structure, examples are linear (also called serial) and binary.
9
New cards
Sorted
Before using binary search, the data must be \__________ into order.
10
New cards
Unsorted
Linear search will work on sorted or \_____________ data
11
New cards
Slow
Bubble sort, insertion sort and linear search are all very \_______, inefficient algorithms
12
New cards
Fast
Binary search and merge sort are very \_______ algorithms because they complete the task with many fewer comparisons