不使用 LINQ 查找数组列表中的重复值
我有一个数组列表,其中有几个重复的项目。我需要知道每个重复项目的数量。我使用的是2.0所以不能使用linq。
我之前也发过类似的问题,但是我的问题不太清楚。 谢谢 普拉迪
I have an arraylist with few duplicate items. I need to know the count of each duplicated item. I am using 2.0 so cannot use linq.
I had posted a similar question earlier, but my question was not clear.
Thanks
Prady
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我过去曾经做过一些事情。我的解决方案是循环遍历 ArrayList 并将计数存储在字典中。然后循环遍历字典以显示结果:
输出:
编辑
意识到我使用了 var 关键字,这不是 2.0 功能。将其替换为 KeyValuePair。
I've done something in the past. My solution was to loop through the ArrayList and store the counts in a dictionary. Then loop though the dictionary to display the results:
Output:
Edit
Realized I used the var keyword which is not a 2.0 feature. Replaced it with KeyValuePair.
选项 1:对列表进行排序,然后对相邻的 Equal 项目进行计数(要求您重写类的 Equals 方法)
选项 2:使用您的唯一标识符(但是您将两个对象定义为相等)作为字典的键,并将每个对象添加到该条目中。
Option 1: Sort the list and then count adjacently Equal items (requires you to override the Equals method for your class)
Option 2: Use your unique identifier (however you're defining two objects to be equal) as the key for a Dictionary and add each of your objects to that entry.
很久以前我需要一个类似的项目,并为它做了一个功能
i needed something similar for a project a long time ago, and made a function for it