Unit 5 BJC

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

1/33

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.

34 Terms

1
New cards

problem

a general description of a task that may (or may not) be solved algorithmically

2
New cards

Linear Search or Sequential Search

An algorithm takes linear time if multiplying the input size by ten multiplies the time required by ten. This search also checks each element of a list in order

3
New cards

binary search

starts in the middle of a sorted list and repeatedly eliminates half the list until either the desired value is found or all elements have been eliminated. Partial Traversing.

4
New cards

efficiency

The relationship between the input size and the number of steps required to solve a problem is the…. of the algorithm used to solve the problem.s

5
New cards

sublinear time

  • An algorithm takes…if the number of steps grows more slowly than the size.

6
New cards

constant time

An algorithm takes…if it takes the same number of steps regardless of input size

7
New cards

quadratic time

An algorithm takes…if the number of steps is proportional to the square of the input size.

8
New cards

linear time

An algorithm takes…if the number of steps is proportional to the input size; doubling the input size doubles the time required.

9
New cards

polynomial time

An algorithm takes…if the number of steps is less than or equal to a power of the size of the input, such as constant (n0), sublinear, linear (n1), quadratic (n2), or cubic (n3).

10
New cards

exponential time

An algorithm takes…if the number of steps is proportional to an exponential function of the size of the input, such as 2n, 10n, etc., which is much slower than any polynomial.

11
New cards

reasonable time

describes any algorithm that runs in polynomial time. Exponential time algorithms are not considered this…

12
New cards

heuristics

polynomial-time algorithms that don't solve the problem exactly, but give a good enough approximation. Called “hill climbing” meaning it will find the best nearby path but there might be a better path farther away.

13
New cards

Decision Problem

a problem with a true/false answer (for example, "is 5,825,496,221 a prime number?")

14
New cards

Optimization Problem

  • A problem with the goal of finding the best solution among many (for example, "what's the best school schedule to place every student into as many of their requested classes as possible?").

15
New cards

decidable problem

a decision problem for which it's possible to write an algorithm that will give a correct output for all inputs.

16
New cards

undecidable problem

It's not possible to write an algorithm that will give a correct output for all inputs—even though it might be possible for some of them.

17
New cards

sequential Computing

operations are performed in order one at a time

18
New cards

parallel computing

the program is broken into smaller steps, some of which are performed at the same time

19
New cards

distributed computing

a form of parallel computing that uses multiple computers (perhaps even spread out around the world)

20
New cards

Processor

a piece of circuitry inside a computer that processes the instructions from computer programs

21
New cards

speedup

Programmers refer to the….of parallel solution to describe how many times as fast the parallel solution is compared to the sequential solution

22
New cards

Simulation

computer representations of real things or situations that vary over time. A… is an abstraction designed for a particular purpose.

23
New cards

Data

values that computers receive from various sources, including human activity, sensors, etc

24
New cards

Information

humanly-useful patterns extracted from data

25
New cards

correlation

a particular kind of information, namely a dependence between two variables

26
New cards

Insight

a meaningful conclusion drawn from analyzing information

27
New cards

record

one row in a dataset (other than the first row, which contains the column headings)

28
New cards

field

one item of a record in a dataset

29
New cards

column

a list containing the data from one field for all records in a dataset

30
New cards

Classifying data

distributing data into groups based on common characteristics

31
New cards

Metadata

data about data. For example, the piece of data may be an image, while the metadata may include the date of creation or the file size of the image

32
New cards

Infinite Loop

a sequence of computer instructions that repeats forever

33
New cards

unsolvable problem

no algorithm can ever be written to find the solution

34
New cards

Undecidable Problem

no algorithm can ever be written that will always give a correct true/false decision for every input value. These are a subcategory of unsolvable problems that include only problems that should have a yes/no answer (such as: does my code have a bug?)