c#嵌套字典,更好的替代方案?最好地组织三个类的数据
本文关键字:三个 数据 更好 字典 嵌套 方案 | 更新日期: 2023-09-27 18:12:30
假设
有一个趋势类。
public class Trend{
public string TrendName { get; set; }
public string Description { get; set; }
}
例如
new Trend() { TrendName= "Pizza", Description="yum yum" };
new Trend() { TrendName= "Clothing", Description="ba yum" };
new Trend() { TrendName= "Food" };
有一个Person类。
public class Person {
public string PersonName { get; }
public int PersonId { get; }
public int aptitude { get; }
...... many other properties
}
例如
new Person() { PersonName = "Arnold Palmer" };
new Person() { PersonName = "Ken Hemingway" };
有一个东西类。
public class TrendyItem
{
public string ItemName { get; }
public string ItemId { get; }
}
例如
new TrendyItem() { ItemName = "PotatoPizza" }
new TrendyItem() { ItemName = "PeplumSkirt" }
有一个TrendysOfYear类。这个类已经有了。
public class TrendProfile
{
public List<Trend> FavoriteTrendsOfYear;
public List<Person> ActivePeopleThisYear;
public List<TrendyItem> TrendyItemsThisYear;
}
对于每年的每个趋势,将有一个不同趋势的列表,FavoriteTrendsOfYear,
属于ActivePeopleThisYear 的每个人
将指定一个"TrendyItem">
给定TrendProfile,我希望能够快速查找
1( 输入:人;输出:个人对时尚商品的选择列表。
2( 输入:趋势;输出:属于该趋势的潮流商品列表。
我考虑了两种方法。
A( Dictionary<Person, Dictionary<Trend, TrendyItem>>
您可以获得PersonsChoiceOnendyItem=dic[Person].Values.ToList((;
但每次查找TrendyItemsOfTrend时,都必须循环浏览并构建新的列表。
B( Dictionary<Trend, Dictionary<Person, TrendyItem>>
副主席。
将这些自定义对象用于字典键是一种好的做法吗?
使用嵌套词典是一种好的做法吗?
在这种情况下,映射项目的最佳方式是什么?
此外,并不是趋势类没有整数Id,所以必须使用字符串(趋势的名称保证是唯一的(作为关键字。
附加信息:趋势的属性,如趋势名称和描述是可编辑的。所以我有点犹豫是否要将TrendyItems集合添加到Trend类中。如果TrendProfile1和TrendProfile2中有Trend,"Fashionn",并且有人决定将名称更改为"Fashion",我希望两个配置文件都引用同一对象。
通常,您不会看到以这种方式将包含值的对象用作键。通常,您会在对象上标识一些唯一的键,并将其用作键,将对象本身用作值。例如,可以将Person
对象存储在Dictionary
中,其中人名是关键字,Person
是值。
您应该考虑将集合添加到对象中,而不是嵌套的Dictionary。例如,您可以将List<TrendyItem>
添加到Trend
以维护该关系。
这里有一种你可以组织课程的替代方法。我不太确定您的每个集合的范围是什么,但这应该会给您提供另一种看待问题的方法。
public class Trend
{
public string TrendName { get; set; }
public string Description { get; set; }
// This maintains the relationship between Trend and TrendyItem
public List<TrendyItem> Items { get; set; }
}
public class Person
{
public string PersonName { get; set; }
public int PersonId { get; set; }
public int aptitude { get; set; }
// Each person will specifiy a "TrendyItem"
public TrendyItem Choice { get; set; }
}
public class TrendyItem
{
public string ItemName { get; set; }
public string ItemId { get; set; }
}
public class TrendProfile
{
// Change this to to a key value pair. The key will be how you uniquely identify (input) the Trend in
//2) Input: Trend; Output: List of trendy items belonging to that trend.
// For example TrendName
public Dictionary<string, Trend> FavoriteTrendsOfYear;
// Change this to to a key value pair. The key will be how you uniquely identify (input) the Person in
// 1) Input: Person; Output: List of Person's choice on trendy items.
// For example PersonName
public Dictionary<string, Person> ActivePeopleThisYear;
public List<TrendyItem> TrendyItemsThisYear;
}
有了这种课堂结构,你可以很容易地回答帖子中的问题。
static void Main()
{
TrendProfile trendProfile = new TrendProfile();
trendProfile.FavoriteTrendsOfYear = new Dictionary<string, Trend> {
{ "Pizza", new Trend() {
TrendName = "Pizza",
Description = "yum yum",
Items = new List<TrendyItem> {
new TrendyItem() {ItemName = "PotatoPizza1"},
new TrendyItem() {ItemName = "PotatoPizza2"},
new TrendyItem() {ItemName = "PotatoPizza3"}
}
}},
{ "Clothing", new Trend() {
TrendName = "Clothing",
Description = "ba yum",
Items = new List<TrendyItem> {
new TrendyItem() {ItemName = "PeplumSkirt1"},
new TrendyItem() {ItemName = "PeplumSkirt2"},
new TrendyItem() {ItemName = "PeplumSkirt3"}
}
}}
};
trendProfile.ActivePeopleThisYear = new Dictionary<string, Person> {
{ "Arnold Palmer", new Person() { PersonName = "Arnold Palmer", Choice = trendProfile.FavoriteTrendsOfYear["Pizza"].Items[1] }},
{ "Ken Hemingway", new Person() { PersonName = "Ken Hemingway", Choice = trendProfile.FavoriteTrendsOfYear["Clothing"].Items[2] }},
};
//1) Input: Person; Output: List of Person's choice on trendy items.
string person = "Arnold Palmer";
Console.WriteLine(trendProfile.ActivePeopleThisYear[person].Choice.ItemName);
//2) Input: Trend; Output: List of trendy items belonging to that trend.
string trend = "Clothing";
foreach(TrendyItem item in trendProfile.FavoriteTrendsOfYear[trend].Items)
Console.WriteLine(item.ItemName);
}
更新
要在TrendProfiles中共享趋势,您可以首先创建趋势的"主"List
或Dictionary
。然后,在构建每个TrendProfiles时,您可以从"大师"中挑选趋势。
// "Master" list of trends
List<Trend> trends = new List<Trend> {
new Trend() {
TrendName = "Pizza",
Description = "yum yum",
Items = new List<TrendyItem> {
new TrendyItem() {ItemName = "PotatoPizza1"},
new TrendyItem() {ItemName = "PotatoPizza2"},
new TrendyItem() {ItemName = "PotatoPizza3"}
}
},
new Trend() {
TrendName = "Clothing",
Description = "ba yum",
Items = new List<TrendyItem> {
new TrendyItem() {ItemName = "PeplumSkirt1"},
new TrendyItem() {ItemName = "PeplumSkirt2"},
new TrendyItem() {ItemName = "PeplumSkirt3"}
}
}
};
TrendProfile trendProfile1 = new TrendProfile();
trendProfile1.FavoriteTrendsOfYear = new Dictionary<string, Trend> {
{ trends[0].TrendName, trends[0] },
{ trends[1].TrendName, trends[1] }
};
TrendProfile trendProfile2 = new TrendProfile();
trendProfile2.FavoriteTrendsOfYear = new Dictionary<string, Trend> {
{ trends[1].TrendName, trends[1] }
};