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

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


ตั้งค่า LinkedList และเพิ่มองค์ประกอบ

string [] students = {"Beth","Jennifer","Amy","Vera"};
LinkedList<string> list = new LinkedList<string>(students);

ขั้นแรก เพิ่มโหนดใหม่ในตอนท้าย

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

ตอนนี้ ใช้เมธอด AddAfter() เพื่อเพิ่มโหนดหลังโหนดที่กำหนด

list.AddAfter(newNode, "Matt");

ต่อไปนี้คือโค้ดที่สมบูรณ์

ตัวอย่าง

using System;
using System.Collections.Generic;
class Demo {
   static void Main() {
      string [] students = {"Beth","Jennifer","Amy","Vera"};
      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("Emma");

      // adding a new node after the node added above
      list.AddAfter(newNode, "Matt");

      Console.WriteLine("LinkedList after adding new nodes...");
      foreach (var stu in list) {
         Console.WriteLine(stu);
      }
   }
}

ผลลัพธ์

Beth
Jennifer
Amy
Vera
LinkedList after adding new nodes...
Beth
Jennifer
Amy
Vera
Emma
Matt