Class KavenLinkedList<T>

Represents a doubly-Linked circular list.

Summary

In this type of linked list, the next of the last node will point to the first node and the previous pointer of the first node will point to the last node.

Since

1.1.19

Version

2019-03-22

Type Parameters

  • T

Hierarchy

  • KavenLinkedList

Implements

Constructors

Properties

EqualityComparer?: TEqualityComparer<T>
count: number

Accessors

  • get Count(): number
  • Gets the number of nodes actually contained in the KavenLinkedList.

    Returns

    The number of nodes actually contained in the KavenLinkedList.

    Returns number

Methods

  • Adds a new node containing the specified value after the specified existing node in the KavenLinkedList.

    Returns

    The new KavenLinkedListNode containing value.

    Parameters

    • node: KavenLinkedListNode<T>

      The KavenLinkedListNode after which to insert newNode.

    • value: T

      The value to add to the KavenLinkedList.

    Returns KavenLinkedListNode<T>

  • Adds a new node containing the specified value before the specified existing node in the KavenLinkedList.

    Returns

    The new KavenLinkedListNode containing value.

    Parameters

    • node: KavenLinkedListNode<T>

      The KavenLinkedListNode before which to insert a new KavenLinkedListNode containing value.

    • value: T

      The value to add to the KavenLinkedList.

    Returns KavenLinkedListNode<T>

  • Adds a new node containing the specified value at the start of the KavenLinkedList.

    Returns

    The new KavenLinkedListNode containing value.

    Parameters

    • value: T

      The value to add at the start of the KavenLinkedList.

    Returns KavenLinkedListNode<T>

  • Adds a new node containing the specified value at the end of the KavenLinkedList.

    Returns

    The new KavenLinkedListNode containing value.

    Parameters

    • value: T

      The value to add at the end of the KavenLinkedList.

    Returns KavenLinkedListNode<T>

  • Removes all nodes from the KavenLinkedList.

    Returns void

  • Determines whether a value is in the KavenLinkedList.

    Returns

    true if value is found in the KavenLinkedList; otherwise, false.

    Parameters

    • value: T

      The value to locate in the KavenLinkedList.

    Returns boolean

  • Finds the first node that contains the specified value.

    Returns

    The first KavenLinkedListNode that contains the specified value, if found; otherwise, undefined.

    Parameters

    • value: T

      he value to locate in the KavenLinkedList.

    Returns undefined | KavenLinkedListNode<T>

  • Finds the last node that contains the specified value.

    Returns

    The last KavenLinkedListNode that contains the specified value, if found; otherwise, undefined.

    Parameters

    • value: T

      The value to locate in the KavenLinkedList.

    Returns undefined | KavenLinkedListNode<T>

  • Returns

    A random item in the collection without removing it.

    Returns undefined | T

  • Removes the first occurrence of the specified value from the KavenLinkedList.

    Returns

    true if the element containing value is successfully removed; otherwise, false. This method also returns false if value was not found in the original KavenLinkedList.

    Parameters

    • value: T

      The value to remove from the KavenLinkedList.

    Returns boolean

  • Removes the node at the start of the KavenLinkedList.

    Returns void

  • Removes the node at the end of the KavenLinkedList.

    Returns void

  • Parameters

    • a: T
    • b: T

    Returns boolean

Generated using TypeDoc