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
How to use delegates with events?
Is c# dictionary a hash table?
Why would you use untrusted verification?
What are extensions methods in c#?
What is the benefit of interface in c#?
What Is An Interface Class?
Can a struct inherit from another struct or class in c#?
What is the difference between static class and singleton class in c#?
How does split work in c#?
Define thread? Explain about multithreading?
Where do we set the min and max pool size for connection pooling?
What is default method in c#?
Write the syntax for catching an exception in c#?
How do I calculate relative time?
How do you clear a list in c#?