How to decrease number of hashings in has
Answer / gajendra
Specifying the initial capacity and load factor at the time
of declaration of Hashtable/HashMap will decrease the
number of hashings.
Hashtable ht=new Hashtable(15,0.75);
| Is This Answer Correct ? | 3 Yes | 0 No |
What exactly is java?
How do you remove duplicates from an array in java?
How are java objects passed to a method and what are native methods?
Why pass by reference is not possible in java?
Is map sorted in java?
What is hashtable and explain features of hashtable?
In which language java is written?
What is scanner in java?
What a static class can contains?
How does enum work in java?
Explain java coding standards for constants?
4.1 Supply contracts (in the form of comments specifying pre- and post conditions) for the enqueue() method of the LinkedQueue class given in the Appendix. (2) 4.2 Let Thing be a class which is capable of cloning objects, and consider the code fragment: Thing thing1 = new Thing(); //(1) Thing thing2 = thing1; //(2) Thing thing3 = (Thing) thing1.clone(); //(3) Explain how the objects thing2 and thing3 differ from each other after execution of the statements. (