• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C#中哈希表(HashTable)的用法详解

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

描述: 哈希表存放 key、values ,key值可以用于快速调取用,values 对应object类型,也就是说所有类型。

实例:

1.HashTable存放学生的成绩

   Hashtable ht1 = new Hashtable(); //创建一个Hashtable实例
            ht1.Add("张三", "100"); //添加keyvalue键值对
            ht1.Add("李四", "100");
            ht1.Add("王五", "100");
            ht1.Add("赵六", "200");
            string capital1 = (string)ht["王五"];//根据Key值获取信息
            ht.Remove("赵六"); //移除一个keyvalue键值对 ht.Clear(); //移除所有元素
            object value2 = ht["赵六"];//直接根据key取值,判断类型在进行转化
            if (value2 is string)
            {

            }
            foreach (DictionaryEntry de in ht) //ht为一个Hashtable实例,遍历哈希表 object对象
            {
                Control cc = (Control)de.Value;  
            }
            //添加数据时Hashtable快。频繁调用数据时Dictionary快。

2.System.Collections下的哈希表(Hashtable)和System.Collections.Generic下的字典(Dictionary)都可用作lookup table,下面比较一下二者的执行效率。

Stopwatch sw = new Stopwatch();
Hashtable hashtable = new Hashtable();
Dictionary<string, int> dictionary = new Dictionary<string, int>();
int countNum = 1000000;

sw.Start();
for (int i = 0; i < countNum; i++)
{
    hashtable.Add(i.ToString(), i);
}
sw.Stop();
Console.WriteLine(sw.ElapsedMilliseconds);  //输出: 744

sw.Restart();
for (int i = 0; i < countNum; i++)
{
    dictionary.Add(i.ToString(), i);
}
sw.Stop();
Console.WriteLine(sw.ElapsedMilliseconds);  //输出: 489

sw.Restart();
for (int i = 0; i < countNum; i++)
{
    hashtable.ContainsKey(i.ToString());
}
sw.Stop();
Console.WriteLine(sw.ElapsedMilliseconds);  //输出: 245

sw.Restart();
for (int i = 0; i < countNum; i++)
{
    dictionary.ContainsKey(i.ToString());
}
sw.Stop();
Console.WriteLine(sw.ElapsedMilliseconds);  //输出: 192

Dictionary<K,V>是泛型的,当K或V是值类型时,其速度远远超过Hashtable。


 

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C++中的虚函数、重写与多态发布时间:2022-07-13
下一篇:
c#TCPSocket通讯基础发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap