- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
问题:
我需要将我的 reducedList
中的数据与我的 coreList
相匹配,某种连接,其中键(“Year, Id, House... ") 的 reducedList
将与我的 coreList
的键(列表)匹配,这 2 个结果将合并到临时结果列表 tempList
-这将是一栏。
最终目标是用我后来合并的数据来填充整个excel列,其中tempList
中的第一个条目是标题,其余是数据。
源码已注释掉,希望对你有帮助。
一开始我的示例有效,但我需要一种更好的方法,也许性能更高或解决问题的不同方法,我认为我需要一种更好的映射方法/算法。
这是我的方法:
核心数据(一切):
Dictionary<String, Object> coreList = (Dictionary<String, Object>)_rawCoreList
.Where(x => x.Key.Equals("ListOfCities"))
.ToDictionary(x => x.Key, x => x.Value);//filter the property out I need
初始化数据(此列表稍后将与 coreList
匹配):
List<KeyValuePair<String, String>> reducedList = new List<KeyValuePair<string, string>>();
reducedList.Add(new KeyValuePair<string, string>("Id", "1. Heading"));
reducedList.Add(new KeyValuePair<string, string>("Year", "2. Heading"));
reducedList.Add(new KeyValuePair<string, string>("House", "3. Heading"));
reducedList.Add(new KeyValuePair<string, string>("Garage", "4. Heading"));
reducedList.Add(new KeyValuePair<string, string>("Basdlf", "The key does not exist"));
//reducedList.Add(new KeyValuePair<string, string>(null, null));//check for strange data
将精简列表(只有少数属性)中的属性名称与核心列表(所有属性)组合/匹配:
List<KeyValuePair<String/* Property-Name */, object /* Werte Property-Name */>> ergebnisListe = new List<KeyValuePair<string, object>>();//"" daraus ein Array machen
#region Matching with the reduced list
foreach (KeyValuePair<string, String> reducedListItem in reducedList)
{
List<string> tempList = new List<string>();
tempList.Add(reducedListItem.Value != null && !String.IsNullOrEmpty(reducedListItem.Value) ? reducedListItem.Value : "!Überschrift_FEHLER!");//adding the heading first
#region Itereating through the core list, to get the rest for my data set(actually I need some mapping)
foreach (KeyValuePair<string, Object> item in coreList)
{
#region Filter for my desired list
if (item.Value is IEnumerable && item.Value.GetType().IsGenericType) //matching only for lists, I expect to work with
{
foreach (Dictionary<string, object> subItemListItem in item.Value as List<object>)// I am exspecting some kind of list with "KeyValuePair"'s
{
if (subItemListItem.ContainsKey(reducedListItem.Key))//checking for valid keys
{
//doing something with "subItemListItem.Values" or "Keys" ?!
tempList.Add(subItemListItem[reducedListItem.Key] != null ? subItemListItem[reducedListItem.Key].ToString() : "ERROR");
}
}
}
#endregion
}
#endregion
#region Adding the result to my final list
// adding one column/record
ergebnisListe.Add(new KeyValuePair<string, object>(reducedListItem.Key, tempList.ToArray())); //I need "string[]" first record is the heading and the rest is it's related data
#endregion
}
除了核心列表,我几乎可以随意更改数据结构和类型。
感谢您的帮助。
最佳答案
这是一个 LINQ 版本:
// Getting dictionaries from coreList
var dictsInCoreList =
coreList
.Values
.Where(value => value is IEnumerable && value.GetType().IsGenericType)
.SelectMany(value => value as List<object>)
.Cast<Dictionary<string, object>>()
.ToList();
// Generate the result
ergebnisListe =
reducedList
.Select(reducedListItem =>
{
var tempList =
new List<string>()
{
String.IsNullOrEmpty(reducedListItem.Value)
? "!Überschrift_FEHLER"
: reducedListItem.Value
};
tempList.AddRange(
dictsInCoreList
.Where(dict => dict.ContainsKey(reducedListItem.Key))
.Select(dict => dict[reducedListItem.Key]?.ToString() ?? "ERROR")
);
return new KeyValuePair<string, object>(reducedListItem.Key, tempList);
}
)
.ToList();
由于在第一个语句中收集了所有字典,所以速度更快。
但是我认为有些东西需要重构,因为如果 coreList
仅包含列表(这样我们就不需要过滤 .Value
属性的类型)那么它的真实类型将是 Dictionary<string, List<Dictionary<string, object>>>
这对我来说有点味道。
但是,如果目前对您的解决方案没有更多的领域知识,我无法建议更好的映射。
关于c# - 从不同的 IEnumerable 映射 KeyValuePair,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36939758/
请看一下我的代码。 int main () { Program* allcommand = new Program; allcommand->addCommand("add", new
因此,当我遇到调试断言时,我正在编写代码。现在我很想知道为什么这段代码不起作用: for(Model::MeshMap::iterator it = obj1->GetMeshes().begin()
这是我上一个问题的延续 Group, Sum byType then get diff using Java streams . 按照建议,我应该作为单独的线程发布,而不是更新原始线程。 因此,通过我
我正在实现一些非常适合 map 的代码。但是,我要迭代的列表中有大量对象,所以我的问题是哪种方法是解决此问题的最佳方法: var stuff = $.map(listOfMyObjects, some
我正在尝试创建一个包含不同类的成员函数指针的映射。成员函数都具有相同的签名。为了做到这一点,我所有的类都继承了一个 Object 类,它只有默认构造函数、虚拟析构函数和一个虚拟 ToString()
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: how do you make a heterogeneous boost::map? 有可能在 C++ 中
我有一个 Mysql 查询,请检查以下内容: SELECT `tbl_classSubjects`.`classID` , `tbl_classSubjects`.`sectionID` , `tbl
抱歉,这可能是一个基本问题。 JNA直接映射和接口(interface)映射有什么区别? 我的解释是否正确: 直接映射 : 直接使用库对象(如 Java 中的静态 main) 接口(interface
在 Twitter's Scala school collections section ,它们显示了一个带有偏函数作为值的 Map: // timesTwo() was defined earlie
很难说出这里问的是什么。这个问题是模棱两可的、模糊的、不完整的、过于宽泛的或修辞的,无法以目前的形式得到合理的回答。如需帮助澄清这个问题以便重新打开它,visit the help center .
据我了解,从 scala stdlib 声明一个映射并没有将其专门用于原始类型。我要的不是付出装箱/拆箱的代价,而是同时拥有scala map 的接口(interface)。一个明显的选择是使用 tr
如何为这样的 JSON 响应创建对象映射,它只是一个整数数组: [ 565195, 565309, 565261, 565515, 565292, 565281, 566346, 5
是否可以为 DTO 对象创建映射然后查询它们 而不是域?如果不解释为什么? 如果我需要几个 dtos 怎么办? DTos 是只读的 ID 由 NH 自动生成 将来这些 dtos 将设置映射到链接的 d
我有一个返回的函数(常规代码) [words: "one two", row: 23, col: 45] 在 Scala 中,我将上面更改为 Scala Map,但随后我被迫将其声明为 Map[Str
我有一组与 Vanilla 磅蛋糕烘焙相关的数据(200 行),具有 27 个特征,如下所示。标签caketaste是衡量烤蛋糕的好坏程度,由 bad(0) 定义, neutral(1) , good
我有试图映射到新代码的遗留代码。 OLD_PERSON pid sid name age NEW_PERSON pid sid fid age RESOLVE_PERSON pid fid statu
我有一个表,其中一个字段可以指向其他 3 个表之一中的外键,具体取决于鉴别器值是什么(Project、TimeKeep 或 CostCenter。通常这是用子类实现的,我想知道我有什么 注意子类名称与
我有一个类型 [ST s (Int, [Int])] 的绑定(bind)我正在尝试申请runST使用映射到每个元素,如下所示: name :: [ST s (Int, [Int])] --Of Cou
在我正在进行的项目中,我有以下实体:分析师、客户 和承包商。每个都继承自基类 User。 public abstract class User { public virtual int Id
我想知道是否可以在 Vim 中创建一个映射(对于普通模式),允许用户在映射执行之前输入。 我想为我最常用的 grep 命令创建一个快捷方式的映射。我希望命令允许输入我正在搜索的内容,然后在输入时执行。
我是一名优秀的程序员,十分优秀!