Searching and Sorting Algorithms

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

1/20

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.

21 Terms

1
New cards

Bubble Sort

A Sorting Algorithm that passes over the list many times, compares each pair of adjacent items and swaps them if they are in the wrong order.

<p>A Sorting Algorithm that passes over the list many times, compares each pair of adjacent items and swaps them if they are in the wrong order.</p>
2
New cards

Selection Sort

An algorithm which passes over the list, finds the smallest item and moves it to the left, then repeats the exercise for the remaining list until it is all sorted.

<p>An algorithm which passes over the list, finds the smallest item and moves it to the left, then repeats the exercise for the remaining list until it is all sorted.</p>
3
New cards

Quick Sort

In this sorting algorithm, a pivot is chosen, and all the elements moved either side of the pivot. This is repeated with another pivot either side, recursively until done.

<p>In this sorting algorithm, a pivot is chosen, and all the elements moved either side of the pivot. This is repeated with another pivot either side, recursively until done.</p>
4
New cards

Merge Sort

A sorting algorithm that sorts partial lists then merges them together.

<p>A sorting algorithm that sorts partial lists then merges them together.</p>
5
New cards

Sorting Algorithm

A process commonly used to sort data

6
New cards

Ascending

Rising, going from smallest to largest

7
New cards

Descending

Falling, going from largest to smallest

8
New cards

List

A set of data that can be sorted into order

9
New cards

Array

A variable that can hold list items

10
New cards

Iteration

A code construct, also known as a loop.

11
New cards

for

a Python keyword that starts a loop

12
New cards

if

a Python keyword that makes a selection

13
New cards

Selection

A code construct that makes a choice between two or more outcomes

14
New cards

Search Algorithm

A structured process that finds a target in a set of data.

15
New cards

Linear Search

A search algorithm which looks at every element in turn until it finds the target, it is slow but works even on unsorted data.

<p>A search algorithm which looks at every element in turn until it finds the target, it is slow but works even on unsorted data.</p>
16
New cards

Binary Search

A search 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.

<p>A search 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.</p>
17
New cards

a[n]

Python code that represents the nth member of an array called a.

18
New cards

Variable

A named value in a computer program that can be changed by the program code as it runs. "temp" and "num" are examples in our bubble sort program.

19
New cards

Target

The item we are searching for in a search algorithm.

20
New cards

Pivot

Used in Quick Sort, items are compared to this element, and placed one side or the other.

21
New cards

Insertion Sort

Removes one element from unsorted data and puts it where it belongs in sorted list. Repeats until no input elements remain.

<p>Removes one element from unsorted data and puts it where it belongs in sorted list. Repeats until no input elements remain.</p>