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

溫馨提示×

溫馨提示×

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

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

字典---有序字典(SortedDictionary<TKey,TValue>)

發布時間:2020-07-13 02:00:47 來源:網絡 閱讀:3812 作者:1473348968 欄目:編程語言

--------------------------------------------------------------EmployeeID.cs(鍵)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;
public class EmployeeID : IComparable<EmployeeID>
{
    public int ID { get; private set; }
    public EmployeeID(int id)
    {
        this.ID = id;
    }
   
    public int CompareTo(EmployeeID other)
    {
        return ID.CompareTo(other.ID);
    }
}

 --------------------------------------------------------------Person.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
    public class Person
    {
        public string Country { get; private set; }
        public string Name { get; private set; }
        public int Age { get; private set; }
        public Person(string country, string name, int age)
        {
            this.Country = country;
            this.Name = name;
            this.Age = age;
        }
       
    }
}

 --------------------------------------------------------------主程序

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
    class Program
    {

        static void Main(string[] args)
        {
            //SortedList<TKey,TValue>使用的內存少
            //SortedDictionary<TKey,TValue>元素插入和刪除速度快
            //鍵要實現IComparable<in T>接口
            SortedDictionary<EmployeeID, Person> sd = new SortedDictionary<EmployeeID, Person>();
            sd.Add(new EmployeeID(3),new Person("中國", "張飛", 40));
            sd.Add(new EmployeeID(20), new Person("中國", "關羽", 43));
            sd.Add(new EmployeeID(4), new Person("中國", "劉備", 45));
            sd.Add(new EmployeeID(5), new Person("中國", "諸葛亮", 24));
            sd.Add(new EmployeeID(1), new Person("美國", "豪威爾", 40));
            sd.Add(new EmployeeID(0),new Person("美國", "奧巴馬", 40));
            sd.Add(new EmployeeID(210), new Person("朝鮮", "金三胖", 40));
            sd.Add(new EmployeeID(80), new Person("印度", "印度阿三", 40));
            
            foreach (var item in sd)
            {
                Console.WriteLine(item.Key.ID+","+item.Value.Name);//鍵,正序排序
            }
            Console.ReadKey();
        }

    }
}

 

向AI問一下細節

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

AI

永兴县| 绥阳县| 微山县| 扎赉特旗| 曲阜市| 印江| 恭城| 韩城市| 北京市| 宽城| 慈利县| 万宁市| 陆丰市| 邻水| 潼南县| 普兰县| 长沙县| 罗源县| 阿拉尔市| 南郑县| 临汾市| 勐海县| 阿拉善盟| 临清市| 花莲市| 嫩江县| 南岸区| 邯郸市| 凤城市| 龙江县| 鹰潭市| 横峰县| 竹溪县| 星子县| 达拉特旗| 桃江县| 汪清县| 唐山市| 赤峰市| 朝阳区| 玛多县|