Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

LinkedList ใน C #


System.Collections.Generic เนมสเปซมีอยู่ใน C # สำหรับ LinkedList คลาส LinkedList ช่วยให้แทรกและลบองค์ประกอบจากรายการได้อย่างรวดเร็ว

คลาส C# LinkedList ใช้แนวคิดของรายการที่เชื่อมโยง ช่วยให้เราสามารถแทรกและลบองค์ประกอบได้อย่างรวดเร็ว สามารถมีองค์ประกอบที่ซ้ำกัน พบได้ในเนมสเปซ System.Collections.Generic

นี่คือตัวอย่าง −

ตัวอย่าง

using System;
using System.Collections.Generic;

class Demo {
   static void Main() {
      LinkedList < string > l = new LinkedList < string > ();

      l.AddLast("one");
      l.AddLast("two");
      l.AddLast("three");

      foreach(var ele in l) {
         Console.WriteLine(ele);
      }
   }
}

ผลลัพธ์

one
two
three