阅读量:83
在C#中,二维数组可以与其他数据结构(如列表、字典等)进行转换
- 二维数组转换为列表(List):
int[,] array = new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 } };
Listint>> list = new Listint>>();
for (int i = 0; i< array class="hljs-number">0); i++)
{
List<int> innerList = new List<int>();
for (int j = 0; j< array class="hljs-number">1); j++)
{
innerList.Add(array[i, j]);
}
list.Add(innerList);
}
- 列表转换为二维数组:
Listint>> list = new Listint>>()
{
new List<int> { 1, 2 },
new List<int> { 3, 4 },
new List<int> { 5, 6 }
};
int[,] array = new int[list.Count, list[0].Count];
for (int i = 0; i< list class="hljs-keyword">for (int j = 0; j< list xss=removed>
- 二维数组转换为字典(Dictionary):
int[,] array = new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 } };
Dictionary<int, int> dictionary = new Dictionary<int, int>();
for (int i = 0; i< array class="hljs-number">0); i++)
{
for (int j = 0; j< array class="hljs-number">1); j++)
{
dictionary[i * array.GetLength(1) + j] = array[i, j];
}
}
- 字典转换为二维数组:
Dictionary<int, int> dictionary = new Dictionary<int, int>()
{
{ 0, 1 },
{ 1, 2 },
{ 2, 3 },
{ 3, 4 },
{ 4, 5 },
{ 5, 6 }
};
int rows = (int)Math.Sqrt(dictionary.Count);
int cols = dictionary.Count / rows;
int[,] array = new int[rows, cols];
for (int i = 0; i< rows class="hljs-keyword">for (int j = 0; j< cols xss=removed>
这些示例展示了如何在C#中将二维数组与其他数据结构进行转换。请根据实际需求调整代码。