web-dev-qa-db-ja.com

単一のキーに複数の値を持つハッシュテーブル

次のような単一のキーに複数の値を格納したい:

HashTable obj = new HashTable();
obj.Add("1", "test");
obj.Add("1", "Test1");

現在、これはエラーをスローします。

12
user557168

test,test1,test2,...をテーブルに配置してから、このテーブルをすべてのキーの値としてハッシュテーブルに配置できます。

たとえば、次のようなものを試してください。

List<string> list = new List<string>();
list.Add("test");
list.Add("test1"); 

その後:

HashTable obj = new HashTable();
obj.Add("1", list);
8
Grace

辞書/ハッシュテーブルで同じキーを使用することはできません。たとえば、すべてのキーにリストを使用したいと思います(VB.NET)。

Dim dic As New Dictionary(Of String, List(Of String))
Dim myValues As New List(Of String)
myValues.Add("test")
myValues.Add("Test1")
dic.Add("1", myValues)

C#:

Dictionary<string, List<string>> dic = new Dictionary<string, List<string>>();
List<string> myValues = new List<string>();
myValues.Add("test");
myValues.Add("Test1");
dic.Add("1", myValues);
6
Tim Schmelter

私は自分のMultiDictionaryクラスを使用しています。これはDictionary<TKey,List<TValue>>に基づいていますが、その上に少し構文糖衣構文を提供します。 Entry<TValue>を実装するためにIList<T>を簡単に拡張できる必要があります

public class MultiDictionary<TKey, TValue>
{
    private Dictionary<TKey, List<TValue>> data = new Dictionary<TKey, List<TValue>>();

    public struct Entry : IEnumerable<TValue>
    {
        private readonly MultiDictionary<TKey, TValue> mDictionary;
        private readonly TKey mKey;

        public TKey Key { get { return mKey; } }

        public bool IsEmpty
        {
            get
            {
                return !mDictionary.data.ContainsKey(Key);
            }
        }

        public void Add(TValue value)
        {
            List<TValue> list;
            if (!mDictionary.data.TryGetValue(Key, out list))
                list = new List<TValue>();
            list.Add(value);
            mDictionary.data[Key] = list;
        }

        public bool Remove(TValue value)
        {
            List<TValue> list;
            if (!mDictionary.data.TryGetValue(Key, out list))
                return false;
            bool result = list.Remove(value);
            if (list.Count == 0)
                mDictionary.data.Remove(Key);
            return result;
        }

        public void Clear()
        {
            mDictionary.data.Remove(Key);
        }

        internal Entry(MultiDictionary<TKey, TValue> dictionary, TKey key)
        {
            mDictionary = dictionary;
            mKey = key;
        }

        public IEnumerator<TValue> GetEnumerator()
        {
            List<TValue> list;
            if (!mDictionary.data.TryGetValue(Key, out list))
                return Enumerable.Empty<TValue>().GetEnumerator();
            else
                return list.GetEnumerator();
        }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
        {
            return GetEnumerator();
        }
    }

    public Entry this[TKey key]
    {
        get
        {
            return new Entry(this, key);
        }
    }
}
4
CodesInChaos

おそらく4年後ですが、後で誰かの助けになることを願っています。投稿の前半で述べたように、Hashtable(key、value)の異なる値同じキーを使用することは不可能です。ただし、HashTableのキーと値のペアの値としてListまたはいくつかのobjectを作成することもできます。

//instantiate new Hashtable
Hashtable hashtable = new Hashtable();

//create a class that would represent a value in the HashTable
public class SomeObject
{
    public string value1 { get; set;}
    public string value2 { get; set;}
}

//create a List that would store our objects
List<SomeObject> list = new List<someObject>();

//add new items to the created list
list.Add(new SomeObject() 
             { 
                 value1 = "test", 
                 value2 = "test1"
             });
list.Add(new SomeObject() 
             {
                 value1 = "secondObject_value1" 
                 value2 = "secondObject_value2"
             })

//add key/value pairs to the Hashtable.
hashTable.Add("1", list[0]);
hashTable.Add("2", list[1]);

次に、このデータを取得するには:

//retrieve the value for the key "1"
SomeObject firstObj = (SomeObject)hashTable[1];
//retrieve the value for the key "2"
SomeObject secondObj = (SomeObject)hashTable[2];
Console.WriteLine("Values of the first object are: {0} and {1}", 
                                             firstObj.value1,firstObj.value2);
Console.WriteLine("Values of the second object are {0} and {1}",
                                             secondObj.value1, secondObj.value2);
// output for the WriteLine:
Values of the first object are: test and test1
Values of the second object are secondObject_value1 and secondObject_value2
1
Shukhrat Raimov

あなたは辞書を使うことができます。

実際、今説明したのは、Dictionaryコレクションの理想的な使用法です。値のタイプに関係なく、key:valueのペアが含まれているはずです。値を独自のクラスにすることで、将来、必要が生じた場合に簡単に拡張できます。

サンプルコード:

class MappedValue
{
    public string SomeString { get; set; }
    public bool SomeBool { get; set; }
}

Dictionary<string, MappedValue> myList = new Dictionary<string, MappedValue>;
1

同じキーを2回追加しているため、エラーがスローされます。 Dictionaryの代わりにHashTableを使用してみてください。

Dictionary<int, IList<string>> values = new Dictionary<int, IList<string>>();
IList<string> list = new List<string>()
{
    "test", "Test1"
};
values.Add(1, list);
1
hunter

NameValueCollectionを使用できます-ハッシュテーブルと同じように機能し、「GetValues()」があります。

0
Andy Mazanec

このライブラリ で使用したように、2つのハッシュテーブルを使用することをお勧めします。

0
r.mirzojonov

Lookup を探しています。これは、キーごとに複数の値をネイティブに格納できます。

指摘したように、一度作成したルックアップにはエントリを追加できないため、これは固定リストに対してのみ機能します。

public class LookupEntry
{
    public string Key { get; set; }
    public string Value { get; set; }
}

var list = new List<LookupEntry>(new LookupEntry [] 
                                    {
                                    new LookupEntry() {Key="1", Value="Car" }, 
                                    new LookupEntry() {Key="1", Value="Truck"},
                                    new LookupEntry() {Key="2", Value="Duck"}
                                    });


var lookup = list.ToLookup(x => x.Key, x => x.Value);
var all1s = lookup["1"].ToList();
0
BrokenGlass

JFYI、あなたはあなたのdicをこのように宣言することができます:

Dictionary<int, IList<string>> dic = new
{
    { 1, new List<string> { "Test1", "test1" },
    { 2, new List<string> { "Test2", "test2" }
};
0
abatishchev

リストをハッシュテーブルに保存します。

obj.Add("1",new List<string>());
(obj["1"] as List<string>).Add("test");
(obj["1"] as List<string>).Add("test1");

これは一般的なトリックです。

0
Aliostad