Topic 4: Programming (Searching, Sorting and Psuedocode)

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

1/23

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

24 Terms

1
New cards

collecting input

input VARIABLE

2
New cards

collecting input with a prompt

VARIABLE = input(“prompt”)

3
New cards

displaying output

output VARIABLE 
output “text” 
output VARIABLE, “text”, VARIABLE

4
New cards

declaring variables (general)

VARIABLE = value

5
New cards

declaring multiple variables

VARIABLE1 = value1; VARIABLE2 = value2

6
New cards

declaring variables (boolean)

boolean VARIABLE = True or False

7
New cards

declaring variables (array)

VARIABLE ARRAY

8
New cards

Arithmetic Operators

A=3+3 = 6
B=3-3 = 0
C=3*3 = 9
D=3/3 = 1
E = 3 mod 3 = 0 //remainder
F = 3 div 3 = 1 //integer solution
G = abs(C-11) // Calculate the absolute valueB

9
New cards

Boolean Operators

>

<

>=

<=

!=

=

10
New cards

if-then-else

if condition then 
	//code 
else if condition then 
	//code 
else 
	//code 
endif

11
New cards

while loops

loop while condition 
	//code 
endloop 

12
New cards

for loops

loop counter from start to end 
	//code
endloop

13
New cards

create a queue

Q = new Queue()

14
New cards

Add to end of queue

Q.enqueue(VARIABLE) 	

15
New cards

remove from start of queue

VARIABLE = Q.dequeue()	

16
New cards

check if a queue is empty

Q.isEmpty()	

17
New cards

declare a new stack

S = new Stack()	

18
New cards

Add an element to the top of stack

S.push(VARIABLE) 	

19
New cards

Remove item from top of stack

S.pop()	

20
New cards

check if stack is empty

S.isEmpty()

21
New cards

Linear Search (sequential search)

Progresses from beginning to end of array and check whether each element is equal to the target value

22
New cards

Binary search

Can only be used on a sorted algorithm. The computer checks the middle term, sees if the target value is more or less than, and then proceeds to the corresponding half to repeat the process until the target value is found or the entire designated section has been searched through.

23
New cards

Bubble Sort

Goes through an array, comparing each pair of elements, and swaps the elements if they are out of order. The process repeats until the array is fully sorted and no more swaps are made.

24
New cards

Merge Sort

A sorted and unsorted array are made. The values in the unsorted array are picked out and added to the sorted array in the order that they need to go.