Methods
addNode
- addNode(value: string | number): void
addNodeToIndex
- addNodeToIndex(value: number, index: number): void
-
Parameters
-
value: number
-
index: number
Returns void
drainDreviousNode
- drainDreviousNode(node: Node): null | Node
-
Parameters
Returns null | Node
findAndDrainNodeByCondition
- findAndDrainNodeByCondition(callback: (node: Node) => boolean): null | Node
-
Parameters
-
callback: (node: Node) => boolean
-
-
Parameters
Returns boolean
Returns null | Node
A custom structure to handle the Linked stack. It's a stack where each item is a Node and each Node linked with the previous.
It's required to receive the previous node and insert the calculated node into some index (where the pair was) and update links between other nodes