My Crossword Maker Logo
Powered by BrightSprout
Save Status:
or to save your progress. The page will not refresh.
Controls:
SPACEBAR SWITCHES TYPING DIRECTION
Answer Key:
Edit a Copy:
Make Your Own:
Crucigrama Sopa de Letras Hoja de Trabajo
Calificar este Puzzle:
Log in or sign up to rate this puzzle.

CSP - Algorithms & Lists, Loops and Traversals

Horizontales
_______ Time: Algorithms with a polynomial efficiency or lower (constant, linear, square, cube, etc.)
Traversing a list in such a way that each element is changed in some way such as converting from lowercase to uppercase.
Doing some steps over and over
Provides a "good enough" solution to a problem when an actual solution is impractical or impossible.
Expression that evaluates to either true or false
_____ Time: Algorithms with exponential or factorial efficiencies.
Type of variable that can be used anywhere in a program.
A search algorithm that starts at the middle of a sorted set of numbers and removes half of the data; this process repeats until the desired value is found or all elements have been eliminated.
Traverse a list down to a single element such as locating the lowest temperature
Putting steps in an order
A general description of a task that can (or cannot) be solved with an algorithm.
Verticales
Traversing a list in such a way as to create a subset list of selected items such as only the AFC football teams.
A named group of programming instructions. Also referred to as a “procedure”.
The process of accessing each item in a list one at a time
A measure of how many steps are needed to complete an algorithm.
trying to determine the best, most feasible solution to a problem
A search algorithm which checks each element of a list, in order, until the desired value is found or all elements in the list have been checked.
A finite set of instructions that accomplish a task.
A common method for referencing the elements in a list or string using numbers
An ordered collection of elements.