What is HashTable, what is the use of it, when do we use
(purpose).
Answer Posted / shiva charan
1.basically hashtable stores in terms of (key,value) pair.
2.all the searching operations can be done in O(1) time
complexity.
3. hashtable when u insert the values internally it uses
some optimized algorithm so that accessing will be pretty
much easier.
all the searching operations will be done with less time
complexity if u store the data in a hash table
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of ienumerable in c#?
What is the meaning of int parse in c#?
How can it prevents DLL Hell assembly versioning in .NET?
Why is c# good for games?
What is the use of console?
What is the difference between an integer and int?
Can datetime be null c#?
What is a variable in c#?
What are the different types of delegation?
Why is it important to override gethashcode when equals method is overridden?
What is string literal in c#?
Wht executescaler method is used?
In the page load event I assigned dropdownlist’s datasource property to a valid list. On the submit button click.. The same datasource property is coming as null. Why?
What is unrecognized escape sequence in c#?
If a method's return type is void, can you use a return keyword in the method?