1.0.1 • Published 2 years ago

datastructures-test v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

DataStructures-test.js

My first NPM package for learning purpose. The content is based on the book that currently I read, Learning JavaScript Data Structures and Algorithms: Write complex and powerful JavaScript code using the latest ECMAScript, 3rd Edition by Loiane Groner.

Installation

npm i datastructures-test

Quick Start

Example file: example-stack.js

const Stack = require('datastructures-test');
console.log(Stack);

const stack = new Stack;
stack.push(2)
stack.push(3)
stack.clear()
stack.push(10)
stack.push(11)
stack.push(12)
console.log(stack.pop()) // 12
stack.push(30)
console.log(stack) // Stack { count: 3, items: { '0': 10, '1': 11, '2': 30 } }
console.log(stack.peek()) // 30
console.log(stack.size()) // 3
console.log(stack.toString()) // only this method will have O(n)
1.0.1

2 years ago

1.0.0

2 years ago