In short, the program sorts a list by repeatedly removing an entry and inserting it into its proper place. It is because of this repeated insertion process that the underlying algorithm is called the insertion sort.( )
查看答案
Recursive structures provide an alternative to the loop paradigm for implementing the repetition of activities.( )
The binary search is much faster for larger tables, while sequential works well with smaller ones. ( )
The control of a loop consists of the three activities initialize, test, and modify, with the presence of each being required for successful loop control.( )