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

Computer Science & Information Technology

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

Computer Science & Information Technology

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.

Computer Science & Information Technology

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

Computer Science & Information Technology

The asterisk (*) wildcard represents any individual character.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology