标签: c#
我在c#中有一个struct列表。 struct有5个变量(int doc1,int paragraph1,int doc2,int paragraph2,float similarity)。 doc1,paragraph1表示doc中段落的索引与doc2中parag2的相似度值相关。 文档中的段落可能与具有不同相似性的许多其他段落相关联。 我想让parag2和doc2具有最大的相似性。
答案 0 :(得分:1)
Override the operators ==, >, >=, <, <=, !=,然后是列表中的use LINQ to get the max value。