Coder Social home page Coder Social logo

lochungtin / node-exp-solver Goto Github PK

View Code? Open in Web Editor NEW
1.0 2.0 0.0 16 KB

Mathematical expression solver / Reverse Polish Notation calculator for NodeJS

Home Page: https://www.npmjs.com/package/@enigmaoffline/node-exp-solver

License: MIT License

TypeScript 100.00%
rpn rpn-calculator rpn-expression equation-solver nodejs

node-exp-solver's Introduction

Node Expression Solver

Mathematical expression solver / Reverse Polish Notation calculator for NodeJS

Features

  • Solve infix-notated mathematical expressions
  • Solve RPN expressions
  • Converts infix-notated expressions to RPN
  • Tokenize infix-notated expressions
    • From string to array
    • Able to handle negative numbers
    • Spacing independent

Install

With NPM:

npm install --save @enigmaoffline/node-exp-solver

Usage

const Solver = require('@enigmaoffline/node-exp-solver');

// Tokenization
console.log(Solver.tokenize('-1+2*(3-4)/5+(-6+-7)'));
// => [ '-1', '+', '2', '*', '(', '3', '-', '4', ')', '/', '5', '+', '(', '-6', '+', '-7', ')' ]
console.log(Solver.tokenize('1*2^3+3'));
// => [ '1', '*', '2', '^', '3', '+', '3' ]


// Infix to RPN
console.log(Solver.toRPN(Solver.tokenize('1+2*3')));
// => [ '1', '2', '3', '*', '+' ]


// Basic Solve
console.log(Solver.solve(Solver.tokenize('1+2*3')));
// => 7

// Solve RPN
console.log(Solver.solveRPN(Solver.toRPN(Solver.tokenize('-2+3^2+1'))));
// => 8

Next Steps

  1. Ability to handle Min / Max functions
  2. Ability to handle trig functions
  3. Ability to handle log functions

LICENSE - MIT - Lo Chung Tin

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.