Suppose we have a list of part numbers, numbered from 0 to 1999 and we want to use a hash table for the part numbers. There is no chance that any new part numbers will be inserted and that no part numbers will be removed. We should use:
A. h( k ) = k
B. chaining
C. probing
D. a uniform
A
You might also like to view...
Which type of file cannot be viewed in a text editor such as Notepad?
a. text file b. output file c. input file d. binary file
Answer the following statements true (T) or false (F)
1. It is legal to replace the prototype double totalCost(int numberParam, double priceParam); with the more terse, alternate form double totalCost(int, double); 2. In C++ Boolean value are represented only with the int values 0 for false and 1 for true. 3. Extensive use of global variables is a satisfactory replacement for the difficulties of parameter passing with functions. 4. A variable declared outside any function is said to be a local variable.
A(n) ________ is a special set of characters that control what can and cannot be entered into a field
A) control grid B) Input mask C) label D) icon
The asterisk (*) wildcard represents any individual character.
Answer the following statement true (T) or false (F)