溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

集---HashSet<T>與SortedSet<T>

發(fā)布時間:2020-10-01 05:15:55 來源:網(wǎng)絡 閱讀:701 作者:1473348968 欄目:編程語言

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();
        }
    }
}

 

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI