简体   繁体   English

C#中的多维arraylist或列表?

[英]Multi-dimensional arraylist or list in C#?

Is it possible to create a multidimensional list in C#? 是否可以在C#中创建多维列表? I can create an multidimensional array like so: 我可以像这样创建一个多维数组:

 string[,] results = new string[20, 2];

But I would like to be able to use some of the features in a list or arraylist like being able to add and delete elements. 但我希望能够使用列表或arraylist中的一些功能,如能够添加和删除元素。

You can create a list of lists 您可以创建列表列表

   public class MultiDimList: List<List<string>> {  }

or a Dictionary of key-accessible Lists 或密钥可访问列表的字典

   public class MultiDimDictList: Dictionary<string, List<int>>  { }
   MultiDimDictList myDicList = new MultiDimDictList ();
   myDicList.Add("ages", new List<int>()); 
   myDicList.Add("Salaries", new List<int>()); 
   myDicList.Add("AccountIds", new List<int>()); 

Generic versions, to implement suggestion in comment from @user420667 通用版本,用于在@ user420667的评论中实现建议

  public class MultiDimList<T>: List<List<T>> {  }

and for the dictionary, 而对于字典,

   public class MultiDimDictList<K, T>: Dictionary<K, List<T>>  { }

  // to use it, in client code
   var myDicList = new MultiDimDictList<string, int> ();
   myDicList.Add("ages", new List<T>()); 
   myDicList["ages"].Add(23);
   myDicList["ages"].Add(32);
   myDicList["ages"].Add(18);

   myDicList.Add("salaries", new List<T>());
   myDicList["salaries"].Add(80000);
   myDicList["salaries"].Add(100000);

   myDicList.Add("accountIds", new List<T>()); 
   myDicList["accountIds"].Add(321123);
   myDicList["accountIds"].Add(342653);

or, even better, ... 或者,甚至更好,......

   public class MultiDimDictList<K, T>: Dictionary<K, List<T>>  
   {
       public void Add(K key, T addObject)
       {
           if(!ContainsKey(key)) Add(key, new List<T>());
           if (!base[key].Contains(addObject)) base[key].Add(addObject);
       }           
   }


  // and to use it, in client code
    var myDicList = new MultiDimDictList<string, int> ();
    myDicList.Add("ages", 23);
    myDicList.Add("ages", 32);
    myDicList.Add("ages", 18);
    myDicList.Add("salaries", 80000);
    myDicList.Add("salaries", 110000);
    myDicList.Add("accountIds", 321123);
    myDicList.Add("accountIds", 342653);

EDIT: to include an Add() method for nested instance: 编辑:包含嵌套实例的Add()方法:

public class NestedMultiDimDictList<K, K2, T>: 
           MultiDimDictList<K, MultiDimDictList<K2, T>>: 
{
       public void Add(K key, K2 key2, T addObject)
       {
           if(!ContainsKey(key)) Add(key, 
                  new MultiDimDictList<K2, T>());
           if (!base[key].Contains(key2)) 
               base[key].Add(key2, addObject);
       }    
}

you just make a list of lists like so: 你只需要列出这样的列表:

List<List<string>> results = new List<List<string>>();

and then it's just a matter of using the functionality you want 然后只需使用您想要的功能

results.Add(new List<string>()); //adds a new list to your list of lists
results[0].Add("this is a string"); //adds a string to the first list
results[0][0]; //gets the first string in your first list

Not exactly. 不完全是。 But you can create a list of lists: 但是您可以创建列表列表:

var ll = new List<List<int>>();
for(int i = 0; i < 10; ++i) {
    var l = new List<int>();
    ll.Add(l);
}

Depending on your exact requirements, you may do best with a jagged array of sorts with: 根据您的具体要求,您最好使用锯齿状的阵列:

List<string>[] results = new { new List<string>(), new List<string>() };

Or you may do well with a list of lists or some other such construct. 或者您可以使用列表列表或其他一些此类构造。

If you want to modify this I'd go with either of the following: 如果你想修改它,我会选择以下任何一种方法:

List<string[]> results;

-- or -- - 要么 -

List<List<string>> results;

depending on your needs... 根据您的需要......

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM