如何将数组添加到锯齿状数组中的数组中

时间:2017-01-25 06:38:39

标签: c# arrays jagged-arrays

我正在尝试创建一个个人计算机程序,它可以让我快速将食谱添加到数据库中,并可以按类别轻松查看。我对信息的基本设置是有一个锯齿状的类别数组,每个类别都有一个该类别的食谱数组。我已经找到了解决方案,但没有发现任何似乎可以满足我的具体需求。以下基本上是我的数据结构。

//Full List
string[][][][][] arrA = {
    //List Category
    string[][][][] arrB = {
        //Single Entry
        string[][][] arrC = {
            //Entry Subsection
            string[][] arrD = {
                //Entry Value
                string[] arrE = {
                    "foo", "bar"
                },
                //Entry Value
                string[] arrF = {
                    "bar", "foo"
                }
            }
        }
        //Add Array here
    }
    //List Category
    string[][][][] arrB = {
    //Single Entry
    //Etc...
    }
}

有效地将数组添加到上面的Add Array Here

//Array to add (Entry in Category)
string[][][][] arrV = {
    string[][][] arrW = {
        string[][] arrX = {
            string[] arrY = {
                "rab", "oof"
            },
            string[] arrZ = {
                "oof", "rab"
            }
        }
    }
}

如果无法使用数组执行此操作,我愿意输入转换器代码,只要它可以转换回数组,因为我的显示代码被编写为使用此锯齿状数组结构。< / p>

3 个答案:

答案 0 :(得分:0)

根据您已定义的问题,我认为没有理由为什么这么多嵌套和多维数组是您选择的数据结构。它确实比它的价值更麻烦。

我建议使用从类别到该类别中食谱数组的映射。

class Recipe 
{
    public string name { get; set; }
    public List<string> ingredients { get; set; }
    // ... other things the class needs
}

class MyCookbook 
{
    public Dictionary<string, List<Recipe>> categories = new Dictionary();

    // Creating a single recipe and giving it ingredients
    var penne = new Recipe();
    penne.name = "Penne";
    penne.ingredients = new List<string>();
    penne.ingredients.add("Tomato Sauce");
    // ... add other ingredients

    // Creating a list of recipes we will associate with some category
    var typesOfPasta = new List<Recipe>();
    typesOfPasta.add(penne);

    // Putting that list of recipes into a category, this time "Pasta"
    categories.add("Pasta", typesOfPasta);
}

这是一个基本的设置,你可以扩展,这将允许你有一个字符串(说&#34;面食&#34;)指向一个Recipe对象数组(说&#34;烤宽面条&#34;, &#34;意大利面条和肉丸&#34;等)每个食谱对象都包含该食谱的必要成分列表。

答案 1 :(得分:0)

int mat [][] = new int [5][];
int [] numbers = new int[5];      //{ v1, v2, v3, v5, v6};  Vn: variable

var arr1 = numbers.ToArray();

mat[0] = arr1;  //  o.K

mat[0] = numbers; // K.O

答案 2 :(得分:-1)

为您的问题

似乎嵌套的List可以解决它。有点像:

var entireList = new List<List<List<List<List<string>>>>>();
var allCategories = new List<List<List<List<string>>>>(); 
and so on... 

然后你可以做

entireList.Add(allCategories);
and so on...

我假设每个List的第一个元素命名列表。例如,对于Categories的列表,第一个元素将命名以下元素所属的实际类别。

寻求解决方案

您打算如何将此List存储在数据库中? 我建议您先创建表和数据库模式设计。即类别表等。然后使用类似EnityFramework的ORM连接到数据库,然后根据需要访问每个实体。 这样做可以让您重温以当前的方式表示数据的痛苦。