从C#中的LinkedList删除所有节点
要从LinkedList中删除所有节点,代码如下-
示例
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现在为空!");
foreach (var n in list) {
Console.WriteLine(n);
}
}
}输出结果
这将产生以下输出-
LinkedList nodes... 10 20 30 40 50 LinkedList现在为空!
示例
让我们看另一个例子-
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
热门推荐
10 对患者生日祝福语简短
11 结婚祝福语简短装备
12 周岁祝福语学生文案简短
13 订婚领证祝福语简短精辟
14 导师获奖祝福语大全简短
15 新婚购房祝福语简短精辟
16 牛年祝福语简短的爱人
17 送芒果的祝福语简短
18 送给学长毕业祝福语简短