C# 基礎知識系列- 3 集合數組

来源:https://www.cnblogs.com/c7jie/archive/2020/03/27/12584030.html
-Advertisement-
Play Games

簡單的介紹一下集合,通俗來講就是用來保管多個數據的方案。比如說我們是一個公司的倉庫管理,公司有一堆貨物需要管理,有同類的,有不同類的,總而言之就是很多、很亂。我們對照集合的概念對倉庫進行管理的話,那麼 數組就是將一堆貨整整齊齊的碼在倉庫的某個地方,普通列表也是如此;Set就是在倉庫里有這麼一個貨架, ...


簡單的介紹一下集合,通俗來講就是用來保管多個數據的方案。比如說我們是一個公司的倉庫管理,公司有一堆貨物需要管理,有同類的,有不同類的,總而言之就是很多、很亂。我們對照集合的概念對倉庫進行管理的話,那麼 數組就是將一堆貨整整齊齊的碼在倉庫的某個地方,普通列表也是如此;Set就是在倉庫里有這麼一個貨架,每種貨品只能放一個,一旦某種貨品超過一個了貨架就塌了;Dictionary字典呢,在一個貨架上隨機擺放,然後再找一個本子把每個貨品存放的位置記錄下來。

1. 主要集合

C#/.NET Framework 提供了很多很有意思的集合類,數組、列表、鏈表、Set、字典等一系列的類。其中數組是語言的一部分,個人認為嚴格意義上不屬於集合類這一部分。C#開發中常用的集合有數組、 List類、Set介面、Dictionary類、Queue類、LinkedList類等,其他的出鏡率不高。
與其他(java)語言不同的一點是,C#的List是類,而不是介面,介面是IList,但這個介面意義不大,在使用IList的時候更多的傾向於使用IEnumerable,這主要是因為IEnumerableLinq的支持再者兩者的方法基本一致,能用IList的地方基本都可以用IEnumerable

1.1 Array 數組

數組,集合的基礎部分,主要特點是一經初始化就無法再次對數組本身進行增刪元素。C#雖然添加了一些修改數組的擴展方法,但基本都會返回新的數組對象。

1.1.1 初始化

數組的初始化需要指定大小,可以顯示指定或者隱式的指定。

// 顯示指定類型與大小,具體的元素後續賦值
string[] strArr = new string[10]; 
//指定類型同時給元素賦值,具體大小由編譯器自動推斷
string[] strArr1 = new string[]{"1","2","3","4","5","6","7","8","9","10"};
// 類型和大小都由編譯器進行推斷
string[] strArr2 = new []{"1","2","3","4","5","6","7","8","9","10"}; 

1.1.2 常用方法

  1. 訪問和賦值
    數組可以通過下標訪問數組中的元素,下標從0開始,表示0位。代碼如下:
string item0 = strArr[0]; //取出 "1"
string item2 = strArr[2]; // 取出 "3"
strArr[0] = "3"; // strArr = {"3","2","3","4","5","6","7","8","9","10"}
  1. 獲取長度
int length = strArr.Length;// 獲取一個整型的長度
//獲取一個長整型的長度,對於一個非常大的數組且長度可能會超過int的最大值
long longLength = strArr.LongLength;
  1. 迴圈迭代
// 普通for 迴圈
for(int i = 0;i < strArr.Length;i++)
{
	string it = strArr[i];
}
// foreach 迴圈
foreach(string it in strArr)
{
	// 依次迴圈,不需要下標,操作更快一點
}

1.1.3 不常用但有用的方法

  1. CopyTo 複製到

    public void CopyTo(Array array, int index);
    public void CopyTo(Array array, long index);
    

    參數說明: array 需要複製到的數組,index 目標數組的起始下標

    方法說明:將 源數組的元素依次複製到 array從index下標開始的位置

    string[] strArr1 = new string[]{"1","2","3","4","5","6","7","8","9","10"};
    string[] strArr3 = new string[10];
    strArr1.CopyTo(strArr3, 0); //strArr3 = {"1","2","3","4",'5","6","7","8","9","10"}
    
    

    值得註意的是strArr3的長度不能 小於 index + strArr1.Length

  2. Sort 排序

    這個方法不是數組對象的方法,而是 Array 提供的一個靜態方法。

    int[] arr1 = new[] {1, 9, 28, 5, 3, 6, 0, 12, 44, 98, 4, 2, 13, 18, 81, 92};
    Array.Sort(arr1);//0,1,2,3,4,5,6,9,12,13,18,28,44,81,92,98
    

    值得註意的是,該方法是直接對數組進行操作,所以不會返回新的數組。

  3. ToList 轉成 List

顧名思義,將Array對象轉成List對象。這裡需要額外註意的是,轉換成的List是不可改變長度的
4. Clone() 獲得一個淺拷貝的數組對象

獲取該對象的一個淺拷貝數組對象。

至於其他的Array類和Array對象 還有很多有意思的方法,但是平時開發的時候使用的頻率比較低。這裡就不一一介紹了,以後需要會介紹一下的。

1.2 List 列表

List列表為一個泛型類,泛型表示<T>,其中T表示列表中存放的元素類型,T代表C#中可實例化的類型。關於泛型的具體描述以後介紹,現在回過頭來繼續介紹列表。列表內部持有一個數組對象,列表有兩個私有變數:一個是列表容量,即內部數組的大小;另一個是存放的元素數量,通過Count獲取。
List列表通過元素數量實現了AddRemove 的操作,列表對象操作引發元素數量變動時都會導致對容量的重新計算,如果現有容量不滿足後續操作需要的話,將會對現有數組進行擴充。

1.2.1 初始化

List<string> list = new List<string>();// 初始化一個空的列表
List<string> list1 = new List<string>{"12", "2"};//初始化一個包含兩個元素的列表
list1 = new List<string>(100);//初始化一個空的列表,並指定list的初始容量為100
list = new List<string>(list1);// 使用一個List/Array 初始化一個列表

1.2.2 常用方法

  1. CountLongCount獲取元素的數量

    Count 表示獲取一個int類型的的數量值,LongCount表示獲取一個long類型的數量值。通常情況下兩者返回的結果是一致的,但是如果列表中元素的數量超過了int允許的最大返回直接使用 Count獲取將會出現數據溢出的問題,這時候就需要LongCount了。

  2. 訪問元素/修改元素

    C#的列表操作單個元素很簡單 ,與數組的操作方式完全一樣。

    string str = list1[0];//獲取 list1 的第一個元素,即下標為0的元素
    

list1[2] = "233"; // 將 list1 的第三個元素設置為“233” ,即下標為2 的元素,這裡假設list1有至少三個元素
```
需要註意的地方是,如果給定的下標超過了List對象的索引值範圍會報ArgumentOutOfRangeException。判斷方法就是 下標>= Count,如果滿足就會越界。
3. AddAddRange 添加到列表最後

將元素添加到List的末尾,`Add`添加一個,`AddRange`添加一組,支持數組、列表。

```c#
List<string> list = new List<string>();// 初始化一個空的列表
list.Add("12");//list = {"12"}
List<string> list1 = new List<string>{"14", "2"};
list.AddRange(list1);// list = {"12","14","2"}
```
  1. Insert(int index, T item)InsertRange(int index,IEnumerable<T> items) 插入

    • Insert(int index,T item) 在 index 下標處插入一個元素,該下標以及該下標以後的元素依次後移
    • InsertRange(int index,IEnumerable<T> items) 在index下標處插入一組元素,該下標以及之後的元素依次後移

    示例:

    List<int> arr1 = new List<int>{1, 9, 28, 5, 3, 6, 0, 12, 44, 98, 4, 2, 13, 18, 81, 92};
    arr1.Insert(3,37);// arr1 = 1,9,28,37,5,3,6,0,12,44,98,4,2,13,18,81,92 下標為3的元素變成了37,之後的元素依次後移了
    
    List<int> arr1 = new List<int>{1, 9, 28, 5, 3, 6, 0, 12, 44, 98, 4, 2, 13, 18, 81, 92};
    List<int> arr2 = new List<int>{2,3,4,5};
    arr1.InsertRange(2,arr2);//arr1=  1,9,2,3,4,5,28,5,3,6,0,12,44,98,4,2,13,18,81,92 可以明顯發現下標為2的元素髮生了變化
    
  2. Contains(T item) 是否包含
    返回一個Boolean類型的結果,如果包含則返回true,如果不包含則返回false

    List<int> arr2 = new List<int>{2,3,4,5};
    arr2.Contains(8);//false
    arr2.Contains(3);//true
    
  3. Remove(T item) 刪除指定元素

    List<int> arr2 = new List<int>{2,3,4,5};
    arr2.Remove(3);// arr2 = 2,4,5
    arr2.Remove(6);//arr2 = 2,4,5
    

    值得註意的是,如果刪除一個不存在的元素時,不會報錯,列表也不會發生任何改變。

  4. RemoveAt(int index) 刪除位於下標的元素

    List<int> arr2 = new List<int>{2,3,4,5};
    arr2.RemoveAt(1);//arr2 = 2,4,5
    

    如果移除的下標超過了列表的最後一個元素的下標將會拋出異常

  5. RemoveRane(IEnumerable<T> items) 刪除一組元素

    Remove(T item)一致,如果要刪除的元素不在列表中,則列表元素不會發生變化。

    List<int> arr1 = new List<int>{1, 9, 28, 5, 3, 6, 0, 12, 44, 98, 4, 2, 13, 18, 81, 92};
    List<int> arr2 = new List<int>{2,3,4,5};
    arr1.RemoveRange(arr2);
    
  6. GetRange(int index,int count)

    從列表中獲取一個子列表,從index開始,獲取count個元素,如果源列表中從index開始剩餘的元素不足count個將會報錯。

1.2.3 不常用但有用的方法

  1. Clear()刪除所有元素

    將列表清空,調用方法之後,列表中將不包含任何元素

  2. Reverse() 調轉順序

    將列表按照從尾到頭的順序進行排列

  3. IndexOf(T item) 查找下標

    查找元素在列表中的下標,如果沒找到元素,則返回-1

  4. Sort()排序

    對列表進行排序,調用方法後,會按照預設排序方法返回一個排序結果

1.3 Set 集合

C#沒有為Set單獨設置類,一方面是因為Set出鏡率不高,另一方面也因為Set本身的機制所致。Set集合不能包含重覆元素,如果嘗試存入重覆元素集合元素將不會發生任何變化。
Set集合中元素的順序與存放順序不一定相同。因為Set集合中存放對於使用者而言是亂序存放的。
我們常用的Set集合有 HashSet<T>SortSet<T>,其他的Set相關類則屬於更加少見。至少在我5年多的開發經歷中沒有用過。

1.3.1 HashSet<T>SortSet<T>

  • HashSet 俗稱 哈希集合或者哈希Set,內部使用Hash值作為元素的唯一性驗證,即調用對象的HashCode()方法作為Hash值的來源。
  • SortSet 顧名思義,排序集合,它每次在插入的時候都會對元素進行一次排序

1.3.2 共同點

  1. 初始化

    兩者相同的地方就是 都有以下幾種初始化方法

    Set<T> set = new HashSet<T>();// = new SortSet<T>(); 初始化一個空的集合
    //使用一個集合對象初始化
    Set<T> set1 = new HashSet<T>(IEnumerable<T> items);// = new SortSet<T>(IEnumerable<T> items); 
    Set<T> set2 = new HashSet<T>(){T t1, T t2, T t3};// 與上一種一樣
    
  2. 添加元素

    set1.Add(item);// 集合只支持添加單個元素,但是可以通過集合運算的方式增加多個元素
    
  3. 移除元素

    set1.Remove(item);//刪除集合中與item判斷相等的元素
    
  4. 訪問元素

    需要註意的地方是,C#對Set沒有支持下標訪問方式獲取Set里的元素,這是因為索引位置對於集合來說意義不大,沒有操作意義。

    foreach (var item in set1)
    {
    	// 操作
    }
    

    Set 只能通過遍歷訪問元素,不能通過Get或者下標操作訪問元素。關於foreach迴圈會在下一篇《C#基礎知識系列》里進行介紹。

  5. 集合運算

    file

    1. UnionWith

      SortedSet<int> set = new SortedSet<int>{1,0,29,38,33,48,17};
      set.UnionWith(new []{5,57,8,4,3,1,0,33}); // set = 0,1,3,4,5,8,17,29,33,38,48,57
      

      通過傳入一個集合對象,將該集合設置為兩個集合的並集,也就是說取上圖 A,B,C 三個區域的和

    2. ExceptWith

      SortedSet<int> set = new SortedSet<int>{1,0,29,38,33,48,17};
      set.ExceptWith(new []{5,57,8,4,3,1,0,33}); // set =17,29,38,48
      

      傳入一個集合,從set中去掉同屬於兩個集合的元素,保留只存在於set的元素,也就是取上圖中的A部分元素

    3. IntersectWith

      SortedSet<int> set = new SortedSet<int>{1,0,29,38,33,48,17};
      set.ExceptWith(new []{5,57,8,4,3,1,0,33}); // set =0,1,33
      

      傳入一個集合,保留set與傳入集合里相同的元素,也就是說取的是上圖中的B部分

    4. SymmetricExceptWith 餘集

      SortedSet<int> set = new SortedSet<int>{1,0,29,38,33,48,17};
      set.SymmetricExceptWith(new []{5,57,8,4,3,1,0,33});//set= 3,4,5,8,17,29,38,48,57
      

      傳入一個集合,保留set與傳入集合兩個集合中不同的元素,也就是取上圖的A+C這兩部分。

  6. Contains 包含

    判斷集合中是否包含目標元素,返回true/false

    SortedSet<int> set = new SortedSet<int>{1,0,29,38,33,48,17};
    set.Contains(1);// true
    

1.3.3 不同點

  1. 初始化
    • HashSet<T> 支持傳入一個自定義的相等比較器,該比較器需要返回一個 bool值;可以指定起始容量
    • SortSet<T> 支持傳入一個自定義的大小比較器,該比較器返回一個int值;不能指定起始容量
  2. 其他
    Comparer 屬性:SortSet 可以獲取大小比較器;HashSet 獲取一個相等比較器

1.4 Dictionary 字典

Dictionary 字典,正如它的名稱一樣,Dictionary 需要指定兩個類型,一個作為索引鍵,一個作為數據值。就像字典一樣,每一個詞條內容都只有一個字詞索引,但可以出現同義詞一樣。當然,作為我博大精深的中文會出現同字不同音的片語,但是一旦把音、字組合起來作為索引,那還是只會出現一個詞條。
所以 Dictionary的使用方式也跟字典一樣,通過索引訪問和操作數據。

1.4.1 初始化

Dictionary的初始化有如下幾個方法:

Dictionary<string, int> dict = new Dictionary<string, int>();// 鍵是字元串,值是int類型
Dictionary<string,int> dict1 = new Dictionary<string, int>(10);// 指定初始容量是10
Dictionary<string,int> dict2 = new Dictionary<string, int>()
{
	{"1",1},
	{"2",2}
};// 在大括弧標記中 通過 {key,value}的寫法創建一個 字典對象,並包含這些鍵值對

// 傳入一個字典對象,以傳入的對象為基礎創建一個字典
Dictionary<string,int> dict3 = new Dictionary<string, int>(dict2);

1.4.2 常用方法

  1. 添加元素

    Dictionary<string, int> dict = new Dictionary<string, int>();
    // 方法一
    dict.Add("1",2);//添加一個 鍵為“1”,值為2的鍵值對。
    //方法二
    //字典可以類似列表的形式通過下標添加或更新鍵對應的值,
    //不過與列表不同的是,字典的下標是字元串
    dict["2"] = 4;// 如果 dict中2有值,則更新為4,如果沒有,則設置2對應的值為4
    
  2. 獲取元素

    Dictionary<string, int> dict = new Dictionary<string, int>();
    /*
    省略數據填充階段
    */
    int value = dict["2"]; // value = 4
    // 如果Dictionary中不存在索引為“2”的數據
    // 將會拋出 System.Collections.Generic.KeyNotFoundException 異常
    

    C# 的Dictionary還有一個TryGetValue方法可以用來嘗試獲取,他的使用方法是這樣的:

    int obj = 0;
    boolean isContains = dict.TryGetValue("3", out obj);
    // 方法會返回 dict是否包含鍵“3”的結果,如果有 obj 則存放了dict中對應的值,如果沒有,則返回false且不改變 obj 的值
    
  3. Count

    獲取Dictionary里鍵值對的數量。

    int count = dict.Count;
    

    Dictionary沒有LongCount屬性,因為對於Dictionary存放數據需要比對Key的相等性,如果存放巨量數據將會對數據的訪問和操作效率有影響。

  4. Keys

    獲取Dictionary里所有的鍵,返回一個KeyCollection對象,不需要關心這是一個什麼類型,可以簡單的把它當做一個存放了鍵的HashSet

  5. ContainsKey()

    是否包含鍵:通常與獲取元素一起使用,可以先判斷Dictionary里是否有這個鍵,然後再進行後續操作。

  6. Remove()

    刪除Dictionary中鍵對應的元素,刪除後再次訪問會報錯。如果刪除一個不存在的元素將返回flase。
    操作示例:

    Dictionary<string,int> dict = new Dictionary<string, int>();
    //省略賦值操作
    bool result = dict.Remove("2");// 如果dict里包含鍵為“2”的元素,則result為true,否則為false
    

    另一種方法:

    int value = 0;
    bool result = dict.Remove("2", out value);
    // 如果dict 里包含鍵為“2”的元素,則result 為 false且value為對應的值
    

1.4.3 不常用但有用的方法

  1. ContainsValue()

    是否包含值,與ContainsKey的用法一樣,只不過遍歷的是值;用處不大。

  2. Values

    獲取值的集合類似與KeyValues

2. 傳統集合(非泛型)

C#的傳統集合基本都存放在System.Collections命名空間里,詳細的可以查看微軟官方文檔。這個命名空間里的集合類使用都不多,不過C#的集合體系的介面規範都是在這個裡面定義的。

2.1 常見類介紹

  1. ArrayList List的非泛型版,與List操作方法一致,不過返回值是Object類型

  2. SortedList 一個排序的鍵值對集合,我沒用過,不過官方給瞭如下示例:

    using System;
    using System.Collections;
    public class SamplesSortedList  {
    
    	 public static void Main()  {
    
    			// Creates and initializes a new SortedList.
    			SortedList mySL = new SortedList();
    			 mySL.Add("Third", "!");
    			 mySL.Add("Second", "World");
    			 mySL.Add("First", "Hello");
    
    			// Displays the properties and values of the SortedList.
    			Console.WriteLine( "mySL" );
    			Console.WriteLine( "  Count:    {0}", mySL.Count );
    			Console.WriteLine( "  Capacity: {0}", mySL.Capacity );
    			Console.WriteLine( "  Keys and Values:" );
    			PrintKeysAndValues( mySL );
    	 }
    
    	 public static void PrintKeysAndValues( SortedList myList )  {
    			Console.WriteLine( "\t-KEY-\t-VALUE-" );
    			for ( int i = 0; i < myList.Count; i++ )  {
    				 Console.WriteLine( "\t{0}:\t{1}", myList.GetKey(i), myList.GetByIndex(i) );
    			}
    			Console.WriteLine();
    	 }
    }
    
  3. HashTable表示根據鍵的哈希代碼進行組織的鍵/值對的集合。HashTable的結構類似於Dictionary但又與其不同,它的鍵值存儲用的是Hash值。以下是官方給出的示例代碼:

    using System;
    using System.Collections;
    
    class Example
    {
    		public static void Main()
    		{
    				// Create a new hash table.
    				//
    				Hashtable openWith = new Hashtable();
    
    				// Add some elements to the hash table. There are no 
    				// duplicate keys, but some of the values are duplicates.
    				openWith.Add("txt", "notepad.exe");
    				openWith.Add("bmp", "paint.exe");
    				openWith.Add("dib", "paint.exe");
    				openWith.Add("rtf", "wordpad.exe");
    
    				// The Add method throws an exception if the new key is 
    				// already in the hash table.
    				try
    				{
    						openWith.Add("txt", "winword.exe");
    				}
    				catch
    				{
    						Console.WriteLine("An element with Key = \"txt\" already exists.");
    				}
    
    				// The Item property is the default property, so you 
    				// can omit its name when accessing elements. 
    				Console.WriteLine("For key = \"rtf\", value = {0}.", openWith["rtf"]);
    
    				// The default Item property can be used to change the value
    				// associated with a key.
    				openWith["rtf"] = "winword.exe";
    				Console.WriteLine("For key = \"rtf\", value = {0}.", openWith["rtf"]);
    
    				// If a key does not exist, setting the default Item property
    				// for that key adds a new key/value pair.
    				openWith["doc"] = "winword.exe";
    
    				// ContainsKey can be used to test keys before inserting 
    				// them.
    				if (!openWith.ContainsKey("ht"))
    				{
    						openWith.Add("ht", "hypertrm.exe");
    						Console.WriteLine("Value added for key = \"ht\": {0}", openWith["ht"]);
    				}
    
    				// When you use foreach to enumerate hash table elements,
    				// the elements are retrieved as KeyValuePair objects.
    				Console.WriteLine();
    				foreach( DictionaryEntry de in openWith )
    				{
    						Console.WriteLine("Key = {0}, Value = {1}", de.Key, de.Value);
    				}
    
    				// To get the values alone, use the Values property.
    				ICollection valueColl = openWith.Values;
    
    				// The elements of the ValueCollection are strongly typed
    				// with the type that was specified for hash table values.
    				Console.WriteLine();
    				foreach( string s in valueColl )
    				{
    						Console.WriteLine("Value = {0}", s);
    				}
    
    				// To get the keys alone, use the Keys property.
    				ICollection keyColl = openWith.Keys;
    
    				// The elements of the KeyCollection are strongly typed
    				// with the type that was specified for hash table keys.
    				Console.WriteLine();
    				foreach( string s in keyColl )
    				{
    						Console.WriteLine("Key = {0}", s);
    				}
    
    				// Use the Remove method to remove a key/value pair.
    				Console.WriteLine("\nRemove(\"doc\")");
    				openWith.Remove("doc");
    
    				if (!openWith.ContainsKey("doc"))
    				{
    						Console.WriteLine("Key \"doc\" is not found.");
    				}
    		}
    }
    
    /* This code example produces the following output:
    
    An element with Key = "txt" already exists.
    For key = "rtf", value = wordpad.exe.
    For key = "rtf", value = winword.exe.
    Value added for key = "ht": hypertrm.exe
    
    Key = dib, Value = paint.exe
    Key = txt, Value = notepad.exe
    Key = ht, Value = hypertrm.exe
    Key = bmp, Value = paint.exe
    Key = rtf, Value = winword.exe
    Key = doc, Value = winword.exe
    
    Value = paint.exe
    Value = notepad.exe
    Value = hypertrm.exe
    Value = paint.exe
    Value = winword.exe
    Value = winword.exe
    
    Key = dib
    Key = txt
    Key = ht
    Key = bmp
    Key = rtf
    Key = doc
    
    Remove("doc")
    Key "doc" is not found.
     */
    

    雖然C#框架保留了非泛型集合元素,但不建議使用非泛型集合進行開發。

3 一些不常用的集合類

除了之前所說的幾個集合類,C#還設置了一些在開發中不常用但在特定場合很有用的集合類。

3.1 Queue<T>Queue

這兩個類是一對的,一個是泛型類,一個是非泛型類。該類中文名稱是隊列,如其名,隊列講究一個先進先出,所以隊列每次取元素都是從頭取,存放是放到隊列尾。
操作代碼如下:

  1. 加入隊列

    Queue queue = new Queue();
    queue.Enqueue(1);
    queue.Enqueue("2");
    
    Queue<string> queue1 = new Queue<string>();
    queue1.Enqueue("stri");//
    
  2. 讀取隊首的元素
    讀取有兩種:

    • 讀取但不移除元素:

      object obj= queue.Peek();
      string str = queue.Peek();
      
    • 讀取並移除元素:

      object obj = queue.Dequeue();
      string str = queue.Dequeue();
      
    1. Count 獲取元素數量

3.2 LinkedList<T>

LinkedList,鏈表。與List不同的地方是,LinkedList的元素是LinkedListNode對象,該對象有四個屬性,分別是List
-指向列表對象,Previous指向前一個對象如果有的話,Next指向後一個對象如果有的話。所以根據元素的屬性可以發現鏈表的工作方式,鏈表就像一條鎖鏈一樣,一個元素分三塊,一個指向前一個元素,一個用來存放值,一個指向下一個元素,簡單如下圖所示:
file
所以可以明顯的發現LinkedList在隨機插取上比一般的要快,因為它不用維護一個數組,但是在查找和坐標操作上明顯要慢很多。
LinkedList簡單介紹這麼多,可以看看它的一些常見操作:

  1. First 第一個元素

    獲取第一個元素

  2. Last 最後一個元素

    獲取最後一個元素

  3. AddAfter/AddBefore
    在某個節點後/在某個節點前插入數據
    支持以下參數列表:

    • (LinkedListNode node, T value)
    • (LinkedListNode node, LinkedListNode newNode)

    第一個參數表示要插入的節點位置,第二個表示要插入的節點/元素。第一個參數會校驗是否屬於該鏈表,如果不屬於則會拋出一個異常。第二個可以是值,也可以是初始化好的節點對象。如果是節點對象,則判斷是否歸屬其他鏈表,如果是其他鏈表拋出異常。

  4. AddFirst/AddLast

    添加元素到頭或者尾,可以使用LinkedListNode或者添加值。

  5. Remove

    刪除,可以傳遞某個節點,或者要刪除的節點里存放的值。

  6. RemoveFirst/RemoveLast
    刪除第一個節點,刪除最後一個節點,不含參數

下麵是微軟官方的一些示例

using System;
using System.Text;
using System.Collections.Generic;

public class Example
{
    public static void Main()
    {
        // Create the link list.
        string[] words =
            { "the", "fox", "jumps", "over", "the", "dog" };
        LinkedList<string> sentence = new LinkedList<string>(words);
        Display(sentence, "The linked list values:");
        Console.WriteLine("sentence.Contains(\"jumps\") = {0}",
            sentence.Contains("jumps"));

        // Add the word 'today' to the beginning of the linked list.
        sentence.AddFirst("today");
        Display(sentence, "Test 1: Add 'today' to beginning of the list:");

        // Move the first node to be the last node.
        LinkedListNode<string> mark1 = sentence.First;
        sentence.RemoveFirst();
        sentence.AddLast(mark1);
        Display(sentence, "Test 2: Move first node to be last node:");

        // Change the last node to 'yesterday'.
        sentence.RemoveLast();
        sentence.AddLast("yesterday");
        Display(sentence, "Test 3: Change the last node to 'yesterday':");

        // Move the last node to be the first node.
        mark1 = sentence.Last;
        sentence.RemoveLast();
        sentence.AddFirst(mark1);
        Display(sentence, "Test 4: Move last node to be first node:");

        // Indicate the last occurence of 'the'.
        sentence.RemoveFirst();
        LinkedListNode<string> current = sentence.FindLast("the");
        IndicateNode(current, "Test 5: Indicate last occurence of 'the':");

        // Add 'lazy' and 'old' after 'the' (the LinkedListNode named current).
        sentence.AddAfter(current, "old");
        sentence.AddAfter(current, "lazy");
        IndicateNode(current, "Test 6: Add 'lazy' and 'old' after 'the':");

        // Indicate 'fox' node.
        current = sentence.Find("fox");
        IndicateNode(current, "Test 7: Indicate the 'fox' node:");

        // Add 'quick' and 'brown' before 'fox':
        sentence.AddBefore(current, "quick");
        sentence.AddBefore(current, "brown");
        IndicateNode(current, "Test 8: Add 'quick' and 'brown' before 'fox':");

        // Keep a reference to the current node, 'fox',
        // and to the previous node in the list. Indicate the 'dog' node.
        mark1 = current;
        LinkedListNode<string> mark2 = current.Previous;
        current = sentence.Find("dog");
        IndicateNode(current, "Test 9: Indicate the 'dog' node:");

        // The AddBefore method throws an InvalidOperationException
        // if you try to add a node that already belongs to a list.
        Console.WriteLine("Test 10: Throw exception by adding node (fox) already in the list:");
        try
        {
            sentence.AddBefore(current, mark1);
        }
        catch (InvalidOperationException ex)
        {
            Console.WriteLine("Exception message: {0}", ex.Message);
        }
        Console.WriteLine();

        // Remove the node referred to by mark1, and then add it
        // before the node referred to by current.
        // Indicate the node referred to by current.
        sentence.Remove(mark1);
        sentence.AddBefore(current, mark1);
        IndicateNode(current, "Test 11: Move a referenced node (fox) before the current node (dog):");

        // Remove the node referred to by current.
        sentence.Remove(current);
        IndicateNode(current, "Test 12: Remove current node (dog) and attempt to indicate it:");

        // Add the node after the node referred to by mark2.
        sentence.AddAfter(mark2, current);
        IndicateNode(current, "Test 13: Add node removed in test 11 after a referenced node (brown):");

        // The Remove method finds and removes the
        // first node that that has the specified value.
        sentence.Remove("old");
        Display(sentence, "Test 14: Remove node that has the value 'old':");

        // When the linked list is cast to ICollection(Of String),
        // the Add method adds a node to the end of the list.
        sentence.RemoveLast();
        ICollection<string> icoll = sentence;
        icoll.Add("rhinoceros");
        Display(sentence, "Test 15: Remove last node, cast to ICollection, and add 'rhinoceros':");

        Console.WriteLine("Test 16: Copy the list to an array:");
        // Create an array with the same number of
        // elements as the inked list.
        string[] sArray = new string[sentence.Count];
        sentence.CopyTo(sArray, 0);

        foreach (string s in sArray)
        {
            Console.WriteLine(s);
        }

        // Release all the nodes.
        sentence.Clear();

        Console.WriteLine();
        Console.WriteLine("Test 17: Clear linked list. Contains 'jumps' = {0}",
            sentence.Contains("jumps"));

        Console.ReadLine();
    }

    private static void Display(LinkedList<string> words, string test)
    {
        Console.WriteLine(test);
        foreach (string word in words)
        {
            Console.Write(word + " ");
        }
        Console.WriteLine();
        Console.WriteLine();
    }

    private static void IndicateNode(LinkedListNode<string> node, string test)
    {
        Console.WriteLine(test);
        if (node.List == null)
        {
            Console.WriteLine("Node '{0}' is not in the list.\n",
                node.Value);
            return;
        }

        StringBuilder result = new StringBuilder("(" + node.Value + ")");
        LinkedListNode<string> nodeP = node.Previous;

        while (nodeP != null)
        {
            result.Insert(0, nodeP.Value + " ");
            nodeP = nodeP.Previous;
        }

        node = node.Next;
        while (node != null)
        {
            result.Append(" " + node.Value);
            node = node.Next;
        }

        Console.WriteLine(result);
        Console.WriteLine();
    }
}

//This code example produces the following output:
//
//The linked list values:
//the fox jumps over the dog

//Test 1: Add 'today' to beginning of the list:
//today the fox jumps over the dog

//Test 2: Move first node to be last node:
//the fox jumps over the dog today

//Test 3: Change the last node to 'yesterday':
//the fox jumps over the dog yesterday

//Test 4: Move last node to be first node:
//yesterday the fox jumps over the dog

//Test 5: Indicate last occurence of 'the':
//the fox jumps over (the) dog

//Test 6: Add 'lazy' and 'old' after 'the':
//the fox jumps over (the) lazy old dog

//Test 7: Indicate the 'fox' node:
//the (fox) jumps over the lazy old dog

//Test 8: Add 'quick' and 'brown' before 'fox':
//the quick brown (fox) jumps over the lazy old dog

//Test 9: Indicate the 'dog' node:
//the quick brown fox jumps over the lazy old (dog)

//Test 10: Throw exception by adding node (fox) already in the list:
//Exception message: The LinkedList node belongs a LinkedList.

//Test 11: Move a referenced node (fox) before the current node (dog):
//the quick brown jumps over the lazy old fox (dog)

//Test 12: Remove current node (dog) and attempt to indicate it:
//Node 'dog' is not in the list.

//Test 13: Add node removed in test 11 after a referenced node (brown):
//the quick brown (dog) jumps over the lazy old fox

//Test 14: Remove node that has the value 'old':
//the quick brown dog jumps over the lazy fox

//Test 15: Remove last node, cast to ICollection, and add 'rhinoceros':
//the quick brown dog jumps over the lazy rhinoceros

//Test 16: Copy the list to an array:
//the
//quick
//brown
//dog
//jumps
//over
//the
//lazy
//rhinoceros

//Test 17: Clear linked list. Contains 'jumps' = False
//

3.3 Stack<T>Stack

Stack廣泛的翻譯是棧,是一種後進先出的集合。在一些特殊場景里,使用十分廣泛。
Stack有兩個很重要的方法PopPush,出/進。Pop 獲取最後一個元素,並退出棧,Push 向棧推入一個元素。
具體可以參照官方文檔

4 集合相關命名空間

C# 的集合還有其他的一些命名空間里藏著寶貝,不過在實際開發中使用頻率並不大,可以按需查看。

4.1 System.Collections.Concurrent 線程安全

這個命名空間,提供了一系列線程安全的集合類,當出現多線程操作集合的時候,應當使用這個命名空間的集合。名稱和常用的類是一一對應的,不過只提供了ConcurrentDictionary<TKey,TValue>ConcurrentQueue<T>ConcurrentStack<T>等幾個集合類。具體可以查看官方文檔

4.2 System.Collections.Immutable 不可變集合

命名空間包含用於定義不可變集合的介面和類,如果需要使用這個命名空間,則需要使用NuGet下載。

    • 共用集合,使其使用者可以確保集合永遠不會發生更改。
  • 提供多線程應用程式中的隱式線程安全(無需鎖來訪問集合)。
  • 遵循函數編程做法。
  • 在枚舉過程中修改集合,同時確保該原始集合不會更改。

更多內容煩請關註我的博客

file


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 補充知識點: 1. 匿名函數(用lambda構建):一語句函數,比較簡單的函數。形式:lambda 參數 : 返回值 + lambda 參數 : 返回值:lambda後直接加形參,形參加多少都可以,但一般只用位置參數,參數之間需要用”,“隔開。 2. 內置函數: + int():將字元串類型轉換為i ...
  • shape函數是numpy.core.fromnumeric中的函數,它的功能是讀取矩陣的長度,比如shape[0]就是讀取矩陣第一維度的長度。它的輸入參數可以使一個整數表示維度,也可以是一個矩陣。這麼說你可能不太理解,我們還是用各種例子來說明他的用法: 一維矩陣[1]返回值為(1L,) 二維矩陣, ...
  • 什麼場景下會有main函數? 當該python腳本被作為模塊(module)引入(import)時,其中的main()函數將不會被執行。 main函數的作用? __ name__ == '__ main__'是Python的main函數入口。並非說,加入這句才能使用python xxx.py來執行, ...
  • 引言 構建分散式系統並不容易。然而,人們日常所使用的應用大多基於分散式系統,在短時間內依賴於分散式系統的現狀並不會改變。ApacheZooKeeper旨在減輕構建健壯的分散式系統的任務。ZooKeeper基於 分散式計算的核心概念而設計,主要目的是給開發人員提供一套容易理解和開發的介面,從而簡化分佈 ...
  • 下麵是互相轉換的代碼: 有想要瞭解更多關於python知識的請在下方評論或私信小編 ...
  • title: Java基礎語法(3) 運算符 blog: "CSDN" data: "Java學習路線及視頻" 1.算術運算符 算術運算符的註意問題 如果對負數取模,可以把模數負號忽略不記,如:5% 2=1。 但被模數是負數則不可忽略。此外,取模運算的結果不一定總是整數。 對於除號“/”,它的整數除 ...
  • 字元串的常用操作 很好理解 字元串可以用 ' + ' 連接,或者乘一個常數重覆輸出字元串 字元串的索引操作 通過一對中括弧可以找到字元串中的某個字元 可以通過正負數雙向操作噢 用一個中括弧來實現 為什麼沒有-0??去清醒腦子想想 -0 和 0 有差嗎? 還有一個切片操作 就像切菜那樣簡單,同樣是中括 ...
  • 中間件分類 ASP.NET Core 中間件的配置方法可以分為以上三種,對應的Helper方法分別是:Run(), Use(), Map()。 Run(),使用Run調用中間件的時候,會直接返回一個響應,所以後續的中間件將不會被執行了。 Use(),它會對請求做一些工作或處理,例如添加一些請求的上下 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...