लिंक्डलिस्ट से सभी नोड्स को हटाने के लिए, कोड इस प्रकार है -
उदाहरण
using System;
using System.Collections.Generic;
public class Demo {
public static void Main() {
int [] num = {10, 20, 30, 40, 50};
LinkedList<int> list = new LinkedList<int>(num);
Console.WriteLine("LinkedList nodes...");
foreach (var n in list) {
Console.WriteLine(n);
}
list.Clear();
Console.WriteLine("LinkedList is empty now!");
foreach (var n in list) {
Console.WriteLine(n);
}
}
} आउटपुट
यह निम्नलिखित आउटपुट देगा -
LinkedList nodes... 10 20 30 40 50 LinkedList is empty now!
उदाहरण
आइए एक और उदाहरण देखें -
using System;
using System.Collections.Generic;
public class Demo {
public static void Main(){
LinkedList<String> list = new LinkedList<String>();
list.AddLast("A");
list.AddLast("B");
list.AddLast("C");
list.AddLast("D");
list.AddLast("E");
list.AddLast("F");
list.AddLast("G");
list.AddLast("H");
list.AddLast("I");
list.AddLast("J");
Console.WriteLine("Count of nodes = " + list.Count);
list.Clear();
Console.WriteLine("Count of nodes (updated) = " + list.Count);
}
} आउटपुट
यह निम्नलिखित आउटपुट देगा -
Count of nodes = 10 Count of nodes (updated) = 0