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();
            }
  • 相关阅读:
    如何查看linux系统是32位还是64位
    netstat 的10个基本用法
    linux入门教程(十) 文档的压缩与打包
    linux入门教程(九) 文本编辑工具vim
    linux入门教程(八) Linux磁盘管理
    linux入门教程(七) linux系统用户以及用户组管理
    CentOS5下配置JDK1.6+TOMCAT6
    【Nodejs】外研社一年级起各年级英语音频下载(缺456年级上)
    【Nodejs】外研社一年级起三年级下MP3下载爬虫1.00
    【Python】torrentParser1.03
  • 原文地址:https://www.cnblogs.com/mahuanpeng/p/6337628.html
Copyright © 2011-2022 走看看