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

ลบองค์ประกอบที่ n จาก headnode โดยใช้ C #


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

Demo list = new Demo();
list.Push(50);
list.Push(100);
list.Push(150);

ตอนนี้หากต้องการลบองค์ประกอบที่ n จาก headnode ให้ส่งสิ่งที่คุณต้องการลบ หากคุณจะตั้งค่า 1 มันจะลบเฮดโหนด

ตัวอย่าง

if (val == 1) {
   head = head.Next;
   return;
}
// n points to the node before the node we wish to delete
Node n = head;
// m is the node set to be deleted
Node m = head.Next;
for (int i = 2; i < val; i++) {
   n = n.Next;
   m = m.Next;
}
n.Next = m.Next;

ด้านบน เราได้ตั้งค่าต่อไปนี้เพื่อชี้โหนดก่อนโหนดที่เราต้องการลบ

Node n = head;