Skip to content

Latest commit

 

History

History
27 lines (12 loc) · 252 Bytes

README.md

File metadata and controls

27 lines (12 loc) · 252 Bytes

data-structures

Implementing different data structures in Javascript.

STACK:

Create stack:

stack = new Stack();

Push to stack:

stack.push(value);

Pop from stack:

var poped = stack.pop();

Print stack content:

stack.printStack();

QUEUE: