91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

發布時間:2020-10-01 05:15:55 來源:網絡 閱讀: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問一下細節

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

AI

墨江| 四子王旗| 无棣县| 长岭县| 霍城县| 同德县| 枣庄市| 凤台县| 绍兴县| 东乌珠穆沁旗| 乐业县| 抚松县| 迁安市| 广河县| 佛坪县| 黄山市| 盐亭县| 黑龙江省| 台江县| 呼伦贝尔市| 荃湾区| 邵武市| 安岳县| 乌兰察布市| 岑溪市| 共和县| 略阳县| 阿拉尔市| 灵丘县| 河西区| 阿荣旗| 东海县| 遂昌县| 兰溪市| 苏尼特右旗| 安仁县| 桦川县| 麦盖提县| 桑植县| 阿鲁科尔沁旗| 体育|