C# 中的 LinkedList RemoveFirst() 方法


假设我们的 LinkedList 如下,其中整数为节点。

int [] num = {29, 40, 67, 89, 198, 234};
LinkedList<int> myList = new LinkedList<int>(num);

现在,如果你想从列表中删除第一个元素,那么使用 RemoveFirst() 方法即可。

myList.RemoveFirst();

示例

 在线演示

using System;
using System.Collections.Generic;
class Demo {
   static void Main() {
      int [] num = {29, 40, 67, 89, 198, 234};
      LinkedList<int> myList = new LinkedList<int>(num);
      foreach (var n in myList) {
         Console.WriteLine(n);
      }
      // removing first node
      myList.RemoveFirst();
      Console.WriteLine("LinkedList after removing the first node...");
      foreach (var n in myList) {
         Console.WriteLine(n);
      }
   }
}

输出

29
40
67
89
198
234
LinkedList after removing the first node...
40
67
89
198
234

更新于:2020 年 6 月 23 日

464 个浏览

开启您的 职业生涯

完成课程即可获得认证

开始学习
广告