zoukankan      html  css  js  c++  java
  • C# HashSet<T> 简单使用

    一个简单的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();
            }
  • 相关阅读:
    双循环建表____1911年 为 辛亥年
    技巧方法
    sscanf
    02-02环境准备-pyenv与virtualenv以及venv方案对比
    02-01环境准备-virtualenv和venv
    02-01环境准备-pyenv
    【转】解决weblogic启动慢和创建域慢的方法
    chrome新版打开新标签页自动打开谷歌主页
    centos6分辨率设置
    12-openldap使用AD密码
  • 原文地址:https://www.cnblogs.com/mahuanpeng/p/6337628.html
Copyright © 2011-2022 走看看