Topic 19 CS Computational Thinking and Problem Solving

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

1/20

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

21 Terms

1
New cards
2
New cards

Binary search

method of searching an ordered list by testing the value of the middle item.

3
New cards

Insertion sort

method of sorting data in an array into alphabetical or numerical order.

4
New cards

Binary tree

hierarchical data structure with each parent node having a maximum of two child nodes.

5
New cards

Graph

non-linear data structure consisting of nodes and edges.

6
New cards

Dictionary

abstract data type consisting of key-value pairs.

7
New cards

Big O Notation

mathematical notation describing algorithm performance.

8
New cards

O(1)

Constant time complexity; efficient regardless of data set size.

9
New cards

O(log N)

Logarithmic time complexity; halves the data set in each pass.

10
New cards

O(N)

Linear time complexity; performance declines with data set growth.

11
New cards

O(n log N)

Linearithmic time complexity; divide data set and solve concurrently.

12
New cards

O(N^2)

Polynomial time complexity; efficiency reduces significantly with larger data sets.

13
New cards

O(2^N)

Exponential time complexity; doubles with each addition to the data set.

14
New cards

Recursion

a process using a function or procedure that is defined in terms of itself and calls itself.

15
New cards

Base case

a terminating solution to a process that is not recursive.

16
New cards

General case

a solution to a process that is recursively defined.

17
New cards

Winding

process which occurs when a recursive function or procedure is called until the base case is found.

18
New cards

Unwinding

process which occurs when a recursive function finds the base case and the function returns the values.

19
New cards

Benefits of recursion

Recursive solutions can contain fewer programming statements than an iterative solution and can solve complex problems in a simpler way.

20
New cards

Stack overflow

If recursive calls to procedures and functions are very repetitive, there is a heavy use of the stack, which can lead to stack overflow.

21
New cards

Compiler implementation of recursion

Recursive code needs to make use of the stack. Therefore, a compiler must produce object code that pushes return addresses and values of local variables onto the stack with each recursive call, winding. Then, it pops the return addresses and values of local variables off the stack, unwinding