AP CSP Notes

0.0(0)
studied byStudied by 1 person
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/4

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.

5 Terms

1
New cards

Heuristic

A "good enough" solution used in situations where the most efficient solution is unattainable, commonly applied in computer science to answer complex questions efficiently.

2
New cards

Traveling Salesman Problem

A classic problem in computer science and algorithms that involves finding the shortest route that visits a set of given cities exactly once and returns to the original city.

3
New cards

Linear Search

A search algorithm that looks through unsorted data one by one, making it slow when dealing with large datasets.

4
New cards

Binary Search

An efficient search algorithm for sorted data that repeatedly divides the search interval in half, making it much faster than linear search.

5
New cards

Parallel Programming & Speedup

Parallel programming involves executing multiple steps simultaneously, leading to a speedup in processing time compared to sequential execution.