Searching and Sorting Algorithms: Fundamentals of algorithms: Computer Science: GCSE (9:1)

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

1/10

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.

11 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

Merge Sort

A very efficient sorting algorithm that repeatedly breaks down a list into smaller lists, then repeatedly merges them back together in order

5
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.

6
New cards

Sorting algorithm

Any algorithm that puts data in order, examples are bubble, insertion and merge

7
New cards

Searching algorithm

Any algorithm that finds data within a data structure, examples are linear (also called serial) and binary.

8
New cards

Sorted

Before using binary search, the data must be __________ into order.

9
New cards

Unsorted

Linear search will work on sorted or _____________ data

10
New cards

Slow

Bubble sort, insertion sort and linear search are all very _______, inefficient algorithms

11
New cards

Fast

Binary search and merge sort are very _______ algorithms because they complete the task with many fewer comparisons