Hashtable v.s. Dictionary
-
Hello everyone, Any guidelines about when to use Hashtable and when to use Dictionary? I always use Dictionary. :-) thanks in advance, George
-
Hello everyone, Any guidelines about when to use Hashtable and when to use Dictionary? I always use Dictionary. :-) thanks in advance, George
Use Hashtable in V1, otherwise use Dictionary.
-
Use Hashtable in V1, otherwise use Dictionary.
V1 means C# 1.0 or? regards, George
-
V1 means C# 1.0 or? regards, George
-
V1 means C# 1.0 or? regards, George
.net V1
-
.net V1
Thanks PIEBALDconsult, Question answered. regards, George
-
Cool, Chao.Fu! Question answered. regards, George
-
Hello everyone, Any guidelines about when to use Hashtable and when to use Dictionary? I always use Dictionary. :-) thanks in advance, George
Well MSDN states that Dictionary(Of TKey, of tValue) is a new class in v2.0. but further explains that the Objects used as Key are required to have an implementation of Equality Comparer, IEqualityComparer whereas in HashTable the objects used as Keys are required to override the IHashCode Provider interface or Object.GetHashCode method. Internally HashTable uses the Dictionary object as its Key/Value pair but hashtable is faster in retrieval. Rest of the details are well explained in MSDN.
Muhammad Talha
-
Well MSDN states that Dictionary(Of TKey, of tValue) is a new class in v2.0. but further explains that the Objects used as Key are required to have an implementation of Equality Comparer, IEqualityComparer whereas in HashTable the objects used as Keys are required to override the IHashCode Provider interface or Object.GetHashCode method. Internally HashTable uses the Dictionary object as its Key/Value pair but hashtable is faster in retrieval. Rest of the details are well explained in MSDN.
Muhammad Talha
telha wrote:
but hashtable is faster in retrieval
Do you have any source to back that up? The HashTable has a lot of additional code for handling thread safety, which of course slows down the process a bit, but other than that they seem to work pretty much the same. Besides, once you have retrieved the value from the HashTable, you have to cast it, which you don't need to do with a Dictionary.
Despite everything, the person most likely to be fooling you next is yourself.
-
Hello everyone, Any guidelines about when to use Hashtable and when to use Dictionary? I always use Dictionary. :-) thanks in advance, George
A Dictionary IS implemented as a hash table: http://msdn.microsoft.com/en-us/library/xfhwa508(VS.80).aspx[^] So if you're using a Dictionary, you're using a hash table.
-
telha wrote:
but hashtable is faster in retrieval
Do you have any source to back that up? The HashTable has a lot of additional code for handling thread safety, which of course slows down the process a bit, but other than that they seem to work pretty much the same. Besides, once you have retrieved the value from the HashTable, you have to cast it, which you don't need to do with a Dictionary.
Despite everything, the person most likely to be fooling you next is yourself.
Thanks Guffa,
Guffa wrote:
The HashTable has a lot of additional code for handling thread safety
Do you mean Hashtable is a class of thread safety? regards, George
-
A Dictionary IS implemented as a hash table: http://msdn.microsoft.com/en-us/library/xfhwa508(VS.80).aspx[^] So if you're using a Dictionary, you're using a hash table.
Thanks Alan, I think it is more correct to say Hashtable is a special type of Dictionary, whose key type is Object, correct? regards, George
-
Well MSDN states that Dictionary(Of TKey, of tValue) is a new class in v2.0. but further explains that the Objects used as Key are required to have an implementation of Equality Comparer, IEqualityComparer whereas in HashTable the objects used as Keys are required to override the IHashCode Provider interface or Object.GetHashCode method. Internally HashTable uses the Dictionary object as its Key/Value pair but hashtable is faster in retrieval. Rest of the details are well explained in MSDN.
Muhammad Talha
Thanks Muhammad, Happy to learn new things from you. Two more comments, 1.
telha wrote:
Well MSDN states that Dictionary(Of TKey, of tValue) is a new class in v2.0. but further explains that the Objects used as Key are required to have an implementation of Equality Comparer, IEqualityComparer whereas in HashTable the objects used as Keys are required to override the IHashCode Provider interface or Object.GetHashCode method.
I did some search from MSDN, I think Dictionary is using either IEqualityComparer.Equals or System.IEquatable, while Hashtable is using Object.GetHashCode to check whether two keys' are the same? 2. From, http://msdn.microsoft.com/en-us/library/xfhwa508(VS.80).aspx[^] What means "Every key in a Dictionary must be unique according to the dictionary's equality comparer" -- I understand key in a Dictionary should have an equality comparer, but I do not know what means an equality comparer for a Dictionary itself? regards, George
-
Thanks Guffa,
Guffa wrote:
The HashTable has a lot of additional code for handling thread safety
Do you mean Hashtable is a class of thread safety? regards, George
-
Yes, HasTable is a synchronised collection, while Dictionary isn't.
Despite everything, the person most likely to be fooling you next is yourself.
Thanks Guffa, It should be a big difference. :-) Any comments to? http://www.codeproject.com/script/Forums/View.aspx?fid=1649&msg=2588727[^] regards, George
-
Thanks Alan, I think it is more correct to say Hashtable is a special type of Dictionary, whose key type is Object, correct? regards, George
I think it's the other way around. A hashtable is a specific type of data structure whose key can be anything that can be represented as binary. A Dictionary is an object that performs a function, and it can be implemented with a hashtable or other data structures. Often you see this functionality implemented with a red-black tree which can grow dynamically (e.g. in C++'s STL), as opposed to a hashtable which has a fixed size.
-
Thanks Muhammad, Happy to learn new things from you. Two more comments, 1.
telha wrote:
Well MSDN states that Dictionary(Of TKey, of tValue) is a new class in v2.0. but further explains that the Objects used as Key are required to have an implementation of Equality Comparer, IEqualityComparer whereas in HashTable the objects used as Keys are required to override the IHashCode Provider interface or Object.GetHashCode method.
I did some search from MSDN, I think Dictionary is using either IEqualityComparer.Equals or System.IEquatable, while Hashtable is using Object.GetHashCode to check whether two keys' are the same? 2. From, http://msdn.microsoft.com/en-us/library/xfhwa508(VS.80).aspx[^] What means "Every key in a Dictionary must be unique according to the dictionary's equality comparer" -- I understand key in a Dictionary should have an equality comparer, but I do not know what means an equality comparer for a Dictionary itself? regards, George
George_George wrote:
I did some search from MSDN, I think Dictionary is using either IEqualityComparer.Equals or System.IEquatable, while Hashtable is using Object.GetHashCode to check whether two keys' are the same?
Both the HashTable and the Dictionary uses both the GetHashCode method and some kind of comparer. The hash code is used to determine a bucket for the item, and the comparer is used when looping through the items in the bucket to find the correct item. HashTable uses the Equals method if no customer key comparer is specified. Dictionary uses the default EqualityComparer for the key if no custom key comparer is specified.
George_George wrote:
What means "Every key in a Dictionary must be unique according to the dictionary's equality comparer" -- I understand key in a Dictionary should have an equality comparer, but I do not know what means an equality comparer for a Dictionary itself?
That's the same thing. The equality comparer for the dictionary is only used to compare keys.
Despite everything, the person most likely to be fooling you next is yourself.
-
I think it's the other way around. A hashtable is a specific type of data structure whose key can be anything that can be represented as binary. A Dictionary is an object that performs a function, and it can be implemented with a hashtable or other data structures. Often you see this functionality implemented with a red-black tree which can grow dynamically (e.g. in C++'s STL), as opposed to a hashtable which has a fixed size.
Thanks Alan,
Alan Balkany wrote:
as opposed to a hashtable which has a fixed size.
You mean Hashtable does not grow? I think when we insert elements into Hashtable, it grows. :-) Any comments? regards, George
-
George_George wrote:
I did some search from MSDN, I think Dictionary is using either IEqualityComparer.Equals or System.IEquatable, while Hashtable is using Object.GetHashCode to check whether two keys' are the same?
Both the HashTable and the Dictionary uses both the GetHashCode method and some kind of comparer. The hash code is used to determine a bucket for the item, and the comparer is used when looping through the items in the bucket to find the correct item. HashTable uses the Equals method if no customer key comparer is specified. Dictionary uses the default EqualityComparer for the key if no custom key comparer is specified.
George_George wrote:
What means "Every key in a Dictionary must be unique according to the dictionary's equality comparer" -- I understand key in a Dictionary should have an equality comparer, but I do not know what means an equality comparer for a Dictionary itself?
That's the same thing. The equality comparer for the dictionary is only used to compare keys.
Despite everything, the person most likely to be fooling you next is yourself.
Great Guffa! 1.
Guffa wrote:
The hash code is used to determine a bucket for the item, and the comparer is used when looping through the items in the bucket to find the correct item.
If more then one elements falls into the same bucket (I think it means hashing conflicting), from your reply, it seems the elements of the same bucket is sorted using Comparer? 2.
Guffa wrote:
That's the same thing. The equality comparer for the dictionary is only used to compare keys.
From the Key type, we can implement the type from equality class, but how to assign the equality cmoparer for the Dictionary itself? regards, George
-
Great Guffa! 1.
Guffa wrote:
The hash code is used to determine a bucket for the item, and the comparer is used when looping through the items in the bucket to find the correct item.
If more then one elements falls into the same bucket (I think it means hashing conflicting), from your reply, it seems the elements of the same bucket is sorted using Comparer? 2.
Guffa wrote:
That's the same thing. The equality comparer for the dictionary is only used to compare keys.
From the Key type, we can implement the type from equality class, but how to assign the equality cmoparer for the Dictionary itself? regards, George
George_George wrote:
If more then one elements falls into the same bucket (I think it means hashing conflicting), from your reply, it seems the elements of the same bucket is sorted using Comparer?
The elements are not sorted, they are just placed in buckets and the order in a bucket is not defined. The comparer is always used when retrieving items. First the bucket is determined from the hash code, then the comparer is used to compare the desired key with the keys of the stored items (even if there is only one in the bucket).
George_George wrote:
From the Key type, we can implement the type from equality class, but how to assign the equality cmoparer for the Dictionary itself?
You can specify a comparer in the constructor to the dictionary. I actually wrote an article about that: Dictionary with a Custom Key[^]
Despite everything, the person most likely to be fooling you next is yourself.