gpt4 book ai didi

.net - .NET 中用于按字符串键或数字索引查找的最佳数据结构是什么?

转载 作者:行者123 更新时间:2023-12-04 14:08:14 28 4
gpt4 key购买 nike

我正在寻找最理想的数据结构(为了性能和易用性),可以通过字符串键或索引从中检索值。字典不起作用,因为您无法真正按索引检索。有任何想法吗?

最佳答案

您想要 OrderedDictionary类(class)。您将需要包含 System.Collections.Specialized 命名空间:

    OrderedDictionary od = new OrderedDictionary(); 
od.Add("abc", 1);
od.Add("def", 2);
od.Add("ghi", 3);
od.Add("jkl", 4);

// Can access via index or key value:
Console.WriteLine(od[1]);
Console.WriteLine(od["def"]);

关于.net - .NET 中用于按字符串键或数字索引查找的最佳数据结构是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/137753/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com