dsjs

Data Structures in Javascript

Usage no npm install needed!

<script type="module">
  import dsjs from 'https://cdn.skypack.dev/dsjs';
</script>

README

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);