Options
All
  • Public
  • Public/Protected
  • All
Menu

Class RPNCalculator

Our RPNCalculator

Hierarchy

  • RPNCalculator

Index

Constructors

constructor

Properties

Private linkedStack

linkedStack: LinkedStack

Private operationsRegistry

operationsRegistry: OperationRegistry

Methods

calculate

  • calculate(): string | number
  • Fetches the first operand and the node pair before it, proceed them and returns result or recursively calls itself if the stack contains other values

    Returns string | number

Private getFirstOperationNodeInList

  • getFirstOperationNodeInList(): null | Node

Private getNodePairBeforeOperation

  • getNodePairBeforeOperation(operationNode: Node): { firstNode: null | Node; lastNode: null | Node }

Private prepareItemToNode

  • prepareItemToNode(item: string): string | number

Private provideResult

  • provideResult(initialResult?: number, firstNode: Node | null): number

pushItem

  • pushItem(item: string): void

reset

  • reset(): void

Private runOperation

  • runOperation(num1: number, num2: number, symbol: string): undefined | number

Generated using TypeDoc