根据value来定位key在C#的Dictionary中如何实现?

本文探讨了在C#中如何在Dictionary中通过value查找对应的key。通常我们使用key获取value,但这里介绍了一种创建辅助数据结构的方法,即创建一个反向映射的Dictionary,用于通过value快速找到key。
摘要由CSDN通过智能技术生成

在C#中Dictionary就是hashtable,只是用起来有泛型更方便,它位于System.Collections.Generic,其定义为:

[SerializableAttribute]
[ComVisibleAttribute(false)]
public class Dictionary<TKey, TValue> : IDictionary<TKey, TValue>, 
    ICollection<KeyValuePair<TKey, TValue>>,
    IEnumerable<KeyValuePair<TKey, TValue>>, 
    IDictionary, ICollection, IEnumerable,
    ISerializable, IDeserializationCallback

我们常常用key来得到value,例如:

string v = dict[key1];

如何用value来得到key? 例如:

string k = dict[value1];

这种需求是常见的,当然你可以遍历所有的value来定位key,或者用很炫的语法糖LINQ,像这样:

MyDict.FirstOrDefault(pair => pair.Value == "the value you want").Key;

但酱紫就不大约O(1)时间了。

一种做法是创建一个自定义的数据结构,里面用空间换时间,存储另外一个value,key的Dictionary,代码如下:

/// <summary>
/// This is a dictionary guaranteed to have only one of each value and key. 
/// It may be searched either by TFirst or by TSecond, giving a unique answer because it is 1 to 1.
/// </summary>
/// <typeparam name="TFirst">The type of the "key"</typeparam>
/// <typeparam name="TSecond">The type of the "value
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值