Searching and sorting algorithms

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

1/17

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.

18 Terms

1
New cards

algorithm

set of instructions that describes how to solve a problem

2
New cards

decomposition

breaking down a problem into smaller, more manageable chunks. In programming this means breaking down an algorithm into smaller problems that can be solved on their own.

3
New cards

abstraction

the process of removing unnecessary detail from a problem so that the important details can be focused on.

4
New cards

pseudocode

a type of structured English for describing algorithms, it allows the designer to focus on the logic of the algorithm without being distracted by the syntax of the programming language

5
New cards

sequence

The statements are executed in the order they are written

6
New cards

selection statement

An IF statement is a ?, the next statement to be executed depends on whether the condition being tested is true or false

7
New cards

iteration

Iteration means repetition of a block of code until a specific result occurs or until a set number of times has been reached, FOR…ENDFOR, WHILE…ENDWHILE,…REPEAT…UNTIL

8
New cards

integer

a whole number

9
New cards

float

number with a decimal point

10
New cards

boolean

can only be true or false

11
New cards

character

a single alphabetic or numerical character

12
New cards

string

one or more characters enclosed in quote marks

13
New cards

linear search

identify search term, look at first item on the list, compare with the search term, if the current term is the same as search term then found=true, else repeat until search term is found. does not need to be in order

14
New cards

binary search

must be in order. with each loop, half the data is removed from the search.

15
New cards

bubble sort

 Each item in a list is compared to the one next to it, and if it is greater, they swap places. At the end of one pass through the list, the largest item is at the end of the list. This is repeated until the items are sorted.

16
New cards

merge sort

What type of sorting repeatedly divided a list into two until all the elements are separated individually.The algorithm looks at the individual elements and compares them as pairs. Each pair is sorted into order.The pairs are then compared, starting with the first number in each pair. If the left hand number is smaller than the right hand number, it is placed in order. The comparison then moves up to the second number on the left hand side and the process repeats. If the right hand number is smaller, it is placed in order and the comparison moves to the next number on that side.

17
New cards

variable

a named unit of data that is assigned a value.

18
New cards

trace tables

used to allow programmers to trace the value of variables as each line of code is executed. The values of the variables are displayed in a table and assist the programmer in identifying any potential errors.