C# | Obtenga la cantidad de Nodes contenidos en LinkedList<T>

La propiedad LinkedList< T >.Count se usa para obtener el número de Nodes realmente contenidos en LinkedList<T>.

Sintaxis:

public int Count { get; }

Valor devuelto: el número de Nodes realmente contenidos en LinkedList.

Nota: Recuperar el valor de esta propiedad es una operación O(1).

A continuación se dan algunos ejemplos para entender la implementación de una mejor manera:

Ejemplo 1:

// C# code to get the number
// of nodes actually contained
// in 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 number of nodes actually
        // contained in the LinkedList
        if (myList.Count > 0)
            Console.WriteLine(myList.Count);
        else
            Console.WriteLine("LinkedList is empty");
    }
}

Producción:

4

Ejemplo 2:

// C# code to get the number
// of nodes actually contained
// in 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 number of nodes actually
        // contained in the LinkedList
        if (myList.Count > 0)
            Console.WriteLine(myList.Count);
        else
            Console.WriteLine("LinkedList is empty");
    }
}

Producción :

LinkedList is empty

Referencia:

Publicación traducida automáticamente

Artículo escrito por Sahil_Bansall y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *