HashTable、HashSet和Dictionary的区别点总结
今天又去面试了,结果依然很悲催,平时太过于关注表面上的东西,有些实质却不太清楚,遇到hashtable和dictionary相关的知识,记录下来,希望对后来人有所帮助,以及对自己以后复习可以参考。
1.hashtable
哈希表(hashtable)表示键/值对的集合。在.net framework中,hashtable是system.collections命名空间提供的一个容器,用于处理和表现类似key-value的键值对,其中key通常可用来快速查找,同时key是区分大小写;value用于存储对应于key的值。hashtable中key-value键值对均为object类型,所以hashtable可以支持任何类型的keyvalue键值对,任何非 null 对象都可以用作键或值。
在哈希表中添加一个key/键值对:hashtableobject.add(key,);
在哈希表中去除某个key/键值对:hashtableobject.remove(key);
从哈希表中移除所有元素: hashtableobject.clear();
判断哈希表是否包含特定键key: hashtableobject.contains(key);
2.hashset
hashset<t>类主要是设计用来做高性能集运算的,例如对两个集合求交集、并集、差集等。集合中包含一组不重复出现且无特性顺序的元素,hashset拒绝接受重复的对象。
hashset<t>的一些特性如下:
a. hashset<t>中的值不能重复且没有顺序。
b. hashset<t>的容量会按需自动添加。
3.dictionary
dictionary表示键和值的集合。
dictionary<string, string>是一个泛型
他本身有集合的功能有时候可以把它看成数组
他的结构是这样的:dictionary<[key], [value]>
他的特点是存入对象是需要与[key]值一一对应的存入该泛型
通过某一个一定的[key]去找到对应的值
4.hashtable和dictionary的区别:
(1).hashtable不支持泛型,而dictionary支持泛型。
(2). hashtable 的元素属于 object 类型,所以在存储或检索值类型时通常发生装箱和拆箱的操作,所以你可能需要进行一些类型转换的操作,而且对于int,float这些值类型还需要进行装箱等操作,非常耗时。
(3).单线程程序中推荐使用 dictionary, 有泛型优势, 且读取速度较快, 容量利用更充分。多线程程序中推荐使用 hashtable, 默认的 hashtable 允许单线程写入, 多线程读取, 对 hashtable 进一步调用 synchronized() 方法可以获得完全线程安全的类型. 而 dictionary 非线程安全, 必须人为使用 lock 语句进行保护, 效率大减。
(4)在通过代码测试的时候发现key是整数型dictionary的效率比hashtable快,如果key是字符串型,dictionary的效率没有hashtable快。
static void intmethod() { int count = 1000000; dictionary<int, int> dictionary = new dictionary<int, int>(); hashtable hashtable = new hashtable(); for (int i = 0; i < count; i++) { dictionary.add(i,i); hashtable.add(i,i); } stopwatch stopwatch = stopwatch.startnew(); for (int i = 0; i < count; i++) { int value = dictionary[i]; } stopwatch.stop(); console.writeline(stopwatch.elapsedmilliseconds); stopwatch = stopwatch.startnew(); for (int i = 0; i < count; i++) { object value = hashtable[i]; } stopwatch.stop(); console.writeline(stopwatch.elapsedmilliseconds); } static void methodstring() { int count = 1000000; dictionary<string, string> dictionary = new dictionary<string, string>(); hashtable hashtable=new hashtable(); for (int i = 0; i < count; i++) { dictionary.add(i.tostring(),"aaa"); hashtable.add(i.tostring(),"aaa"); } stopwatch stopwatch = stopwatch.startnew(); for (int i = 0; i < count; i++) { string value=dictionary[i.tostring()]; } stopwatch.stop(); console.writeline(stopwatch.elapsedmilliseconds); stopwatch = stopwatch.startnew(); for (int i = 0; i < count; i++) { object value = hashtable[i.tostring()]; } stopwatch.stop(); console.writeline(stopwatch.elapsedmilliseconds); }
今天面试最大的收获,不是总结以上的东西,而是让我明白了许多东西不要追求表面的,不是为了完成什么功能,而学习某种技术,更应该深入的去理解它的本质,基础很重要。三位面试官,都非常出色,讲了许多我平常很少用到的东西,和他们在一起交流,会学到不少的东西,真希望以后能进入像这样的公司,让自己快速的成长起来。
面试,不止是为了找一份满意的工作,从中可以让你学会如何沟通,如何去推销自己,更重要的是让自己了解自己的不足,自己在哪些方面还欠缺,还有待提高。
到此这篇关于hashtable、hashset和dictionary的区别点总结的文章就介绍到这了,更多相关hashtable、hashset和dictionary的区别内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!