What is the difference between Hash Table and Arrays?
Answer Posted / sey
both hash table and arrays are data structure, but the way
they store data are different. hash table in some way use
array for its implementations so what makes it a hash table
is the design of hash function that map key(value)to the
hash table. the has function has noting to do with the
actual value(key) except to create O(1) hit to access,
insert or delete item.
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is protected internal modifier in C#?
Can I do things in il that I can't do in c#?
Does c# support const methods, properties, or events?
Why are strings in c# immutable?
In which format you can pass the value in the sleep function?
Why extension method is static?
What is difference between assembly and dll?
What does the parsefloat function do?
What is the execution entry point for a c# console application?
List down the differences between “dispose” and “finalize” methods in c#.
what is the difference between interface and multiple interface?
Explain the term inheritance in C#.
Explain the process of polymorphism with an example?
What is the use of convert toint32 in c#?
My switch statement works differently! Why?