LinkedList 在 C# 中的 AddLast 方法


声明一个字符串数组。

string [] students = {"Jenifer","Angelina","Vera"};

将其添加到 LinkedList 中。

string [] students = {"Jenifer","Angelina","Vera"};

现在,使用 AddLast() 方法在末尾添加一个节点。

list.AddLast("Anne");

范例

 Live Demo

using System;
using System.Collections.Generic;
class Demo {
   static void Main() {
      string [] students = {"Jenifer","Angelina","Vera"};
      LinkedList<string> list = new LinkedList<string>(students);
      foreach (var stu in list) {
         Console.WriteLine(stu);
      }
      // add a node at the end
      Console.WriteLine("Node added at the last...");
      list.AddLast("Anne");
      foreach (var stu in list) {
         Console.WriteLine(stu);
      }
   }
}

输出

Jenifer
Angelina
Vera
Node added at the last...
Jenifer
Angelina
Vera
Anne

更新时间:23-6 月-2020

浏览 332 次

开启您的 职业 生涯

完成课程,获得认证

开始
广告