码迷,mamicode.com
首页 > Windows程序 > 详细

C# HashSet<T> 简单使用

时间:2017-01-21 21:24:34      阅读:360      评论:0      收藏:0      [点我收藏+]

标签:log   ons   with   span   输出   sage   oid   自己   void   

一个简单的HashSet<T> 的例子,介绍其简单的方法,深入学习可参考微软:https://msdn.microsoft.com/en-us/library/bb359438(v=vs.110).aspx

static void Main(string[] args)
        {   
            //定义两个哈希集合以及其中一个集合的子集
            HashSet<int> hashSet1 = new HashSet<int>() { 1, 2, 3, 4, 5 };
            HashSet<int> hashSet2 = new HashSet<int>() { 6, 7, 8, 9, 10 };
            HashSet<int> hashSet1Sub = new HashSet<int>() { 4, 5 };
            HashSet<int> hashSetAll = new HashSet<int>();

            string message = String.Empty;
            bool result = false;

            #region Hash集合元素唯一性体现
            result = hashSet1.Add(1);    //集合1中添加重复元素
            if (result)
            {
                message = "Hash集合已存在该元素";
            }
            else
            {
                message = "元素添加成功";               
            }
            Console.WriteLine(message);
            #endregion

            #region Hash表子集、交集判断
            result = hashSet1.IsSubsetOf(hashSet2);
            if (result)
            {
                message = "Hash集合2是集合1的子集";
            }
            else
            {
                message = "Hash集合2不是集合1的自己";
            }
            Console.WriteLine(message);

            result = hashSet1.Overlaps(hashSet2);
            if (result)
            {
                message = "Hash集合1和Hash集合2存在交集";
            }
            else
            {
                message = "Hash集合1和hash集合2不存在交集";
            }

            result = hashSet1.IsSupersetOf(hashSet2);
            if (result)
            {
                message = "集合1完全包含集合2";
            }
            else
            {
                message = "集合1不完全包含集合2";
            }
            #endregion

            #region 集合的初始化
            hashSetAll = new HashSet<int>(hashSet1);
            hashSetAll.UnionWith(hashSet2);
            hashSetAll.UnionWith(hashSet1Sub);

            message = "输出所有集合的元素";
            Console.WriteLine(message);
            foreach (int item in hashSetAll)
            {
                Console.WriteLine(item);
            }
            #endregion

            #region 排除元素
            hashSetAll.ExceptWith(hashSet2);
            message = "排除了集合2并输出";
            Console.WriteLine(message);
            foreach (var item in hashSetAll)
            {
                Console.WriteLine(item);
            }
            #endregion

            Console.ReadKey();
        }

 

C# HashSet<T> 简单使用

标签:log   ons   with   span   输出   sage   oid   自己   void   

原文地址:http://www.cnblogs.com/mahuanpeng/p/6337628.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!