我应该使用哪种数据结构在 C# 中存储具有 2 个值的单个键? [关闭]

问题描述 投票:0回答:0

假设我有100s数据,1 int key2 int values..

例如-

data1(Int(Key),Int(v1),Int(v2)) data2(Int(Key),Int(v1),Int(v2)) . . data100(Int(Key),Int(v1),Int(v2))

我想以可以使用密钥访问它们的方式存储这 100 个数据。每个值都小于 300。让我想要键 8 的两个值,然后我必须能够获得第 8 个键的这两个值。现在,哪种数据结构最适合这种情况。

谢谢。

c# unity3d data-structures game-development
© www.soinside.com 2019 - 2024. All rights reserved.