码迷,mamicode.com
首页 > 其他好文 > 详细

集---HashSet<T>与SortedSet<T>

时间:2014-09-04 03:03:08      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:   c# 集   sortedlist<t>   hashlist<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>

标签:   c# 集   sortedlist<t>   hashlist<t>   

原文地址:http://962410314.blog.51cto.com/7563109/1548502

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