Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

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 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