C# |获取链表的第一个节点

原文:https://www . geeksforgeeks . org/c-sharp-get-the-link ed list/的第一个节点

链接列表<T1T5。首先属性用于获取链表的第一个节点< T >。

语法:

public System.Collections.Generic.LinkedListNode First { get; }

返回值:链接列表<的第一个链接列表节点<>T>**。

下面给出了一些例子,以便更好地理解实现:

*例 1:*

// C# code to get the first
// node of the LinkedList
using System;
using System.Collections;
using System.Collections.Generic;

class GFG {

    // Driver code
    public static void Main()
    {
        // Creating a LinkedList of Strings
        LinkedList<String> myList = new LinkedList<String>();

        // Adding nodes in LinkedList
        myList.AddLast("Geeks");
        myList.AddLast("for");
        myList.AddLast("Data Structures");
        myList.AddLast("Noida");

        // To get the first node of the LinkedList
        if (myList.Count > 0)
            Console.WriteLine(myList.First.Value);
        else
            Console.WriteLine("LinkedList is empty");
    }
}

*输出:*

Geeks 

*例 2:*

// C# code to get the first
// node of the LinkedList
using System;
using System.Collections;
using System.Collections.Generic;

class GFG {

    // Driver code
    public static void Main()
    {
        // Creating a LinkedList of Integers
        LinkedList<int> myList = new LinkedList<int>();

        // To get the first node of the LinkedList
        if (myList.Count > 0)
            Console.WriteLine(myList.First.Value);
        else
            Console.WriteLine("LinkedList is empty");
    }
}

*输出:*

LinkedList is empty 

*注:*

  • 链接列表接受空值作为引用类型的有效值,并允许重复值。
  • 如果链接列表为空,则第一个最后一个属性包含空值
  • 检索该属性的值是一个 O(1) 操作。

*参考:*