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

โปรแกรม C# เพื่อเพิ่มโหนดก่อนโหนดที่กำหนดในรายการที่เชื่อมโยง


ประกาศ LinkedList และเพิ่มโหนดเข้าไป

string [] students = {"Tim","Jack","Henry","David","Tom"};
LinkedList<string> list = new LinkedList<string>(students);

ให้เราเพิ่มโหนดใหม่

var newNode = list.AddLast("Kevin");

ตอนนี้ หากต้องการเพิ่มโหนดก่อนโหนดที่กำหนด ให้ใช้เมธอด AddBefore()

list.AddBefore(newNode, "Matt");

ให้เราดูรหัสที่สมบูรณ์

ตัวอย่าง

using System;
using System.Collections.Generic;
class Demo {
   static void Main() {
      string [] students = {"Tim","Jack","Henry","David","Tom"};
      LinkedList<string> list = new LinkedList<string>(students);
      foreach (var stu in list) {
         Console.WriteLine(stu);
      }
      // adding a node at the end
      var newNode = list.AddLast("Kevin");
      // adding a new node before the node added above
      list.AddBefore(newNode, "Matt");
      Console.WriteLine("LinkedList after adding new nodes...");
      foreach (var stu in list) {
         Console.WriteLine(stu);
      }
   }
}

ผลลัพธ์

Tim
Jack
Henry
David
Tom
LinkedList after adding new nodes...
Tim
Jack
Henry
David
Tom
Matt
Kevin