Hashtable is a DS with a different style storing the elements. Hashtable takes key, value parameters. That is, to store a value, a key should be supplied. This key is used to retrieve the value later. Key can thought of an identifier to identify the value. Following is the class signature. public class Hashtable extends […]
↧