首页 > 代码库 > 集---HashSet<T>与SortedSet<T>
集---HashSet<T>与SortedSet<T>
HashSet<T>不重复的无序列表
SortedSet<T>不重复的有序列表
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication8 { class Program { static void Main(string[] args) { //=============================【HashSet<T>】============================== //-----------------添加 HashSet<string> test = new HashSet<string> { "a", "b", "c" }; if (!test.Add("a"))//如果列表中存在就不会添加,并返回false Console.WriteLine("该元素已存在,不添加"); if (test.Add("d")) Console.WriteLine("添加元素成功"); //-----------------比较 HashSet<string> test1 = new HashSet<string> { "a", "b", "c"}; HashSet<string> test2 = new HashSet<string> { "a", "b", "c","d" }; if (test1.IsSubsetOf(test2)) { Console.WriteLine("test1的每个元素test2都有"); } if (test1.IsSubsetOf(test2)) { Console.WriteLine("test2相对于test1有额外的元素"); } if (test1.Overlaps(test2)) { Console.WriteLine("test2与test1有共同的元素"); } //=============================【HashSet<T>】============================== //------------添加集 SortedSet<string> sd = new SortedSet<string>(test1);//将test1中的所有元素添加到有序列表中 sd.UnionWith(test2);//将test2中的所有元素添加到有序列表中【结果会排除重复的元素,并排序】 sd.Add("aa"); //------------删除集 sd.Remove("d");//删除匹配的元素 sd.RemoveWhere(r => r == "aa");//删除匹配的元素 sd.ExceptWith(test1);//删除集 foreach (var item in sd) { Console.WriteLine(item); } Console.ReadKey(); } } }
本文出自 “程序猿的家” 博客,请务必保留此出处http://962410314.blog.51cto.com/7563109/1548502
集---HashSet<T>与SortedSet<T>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。