dsjs

0.0.2 • Public • Published

dsjs.js

This project is for educational purposes, more than production like material.

I created this library to learn more about the Javascript world, and try to learn more about the language itself. I used the following tools, libraries and frameworks:

Nodejs, YUIDocs, Mocha and jscoverage

Node

var n = new dsjs.Node();
n.value = 10;

LinkedList

var l = new dsjs.LinkedList();
var n = new dsjs.Node();
l.addFirst(n);

Queue

var q = new dsjs.Queue();
var n = new dsjs.Node();
q.enqueue(n);

Stack

var s = new dsjs.Stack();
var n = new dsjs.Node();
s.push(n);

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.2
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.2
    0
  • 0.0.1
    0

Package Sidebar

Install

npm i dsjs

Weekly Downloads

0

Version

0.0.2

License

none

Last publish

Collaborators

  • aharita