Skip to main content
Contents
Dark Mode Prev Up Next Scratch ActiveCode Profile
\(
\newcommand{\lt}{<}
\newcommand{\gt}{>}
\newcommand{\amp}{&}
\definecolor{fillinmathshade}{gray}{0.9}
\newcommand{\fillinmath}[1]{\mathchoice{\colorbox{fillinmathshade}{$\displaystyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\textstyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\scriptstyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\scriptscriptstyle\phantom{\,#1\,}$}}}
\)
Section 13.11 Glossary
Glossary Glossary
pseudocode.
A way of designing programs by writing rough drafts in a combination of English and C++.
helper function.
Often a small function that does not do anything enormously useful by itself, but which helps another, more useful, function.
top-down design.
A method of program development that uses pseudocode to sketch solutions to large problems and design the interfaces of helper functions.
mergesort.
An algorithm for sorting a collection of values. Mergesort is faster than the simple algorithm in the previous chapter, especially for large collections.
Reading Questions Reading Questions
1.
Match each phrase with the corresponding definition by dragging the phrase into the appropriate box.
Try again!
pseudocode
A way of designing programs by writing rough drafts in a combination of English and C++.
helper function
Often a small function that does not do anything enormously useful by itself, but which helps another, more useful, function.
top-down design
A method of program development that uses pseudocode to sketch solutions to large problems and design the interfaces of helper functions.
mergesort
An algorithm for sorting a collection of values. It is faster than the simple algorithm in the previous chapter, especially for large collections.
You have attempted
of
activities on this page.