0.3.1 • Published 3 years ago

@jaydenlee/mini-data-structure v0.3.1

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

@jaydenlee/mini-data-structure

Install

Using npm:

$ npm install @jaydenlee/mini-data-structure

Using yarn:

$ yarn add @jaydenlee/mini-data-structure

Usage Preview

Node

import { Node } from '@jaydenlee/mini-data-structure';

const node1 = new Node(1);

console.log(node.value); // 1
console.log(node.next); // null

const node2 = new Node(2, node1);

console.log(node2.value); // 2
console.log(node2.next); // node1

More Information => Jayden's Mini Data Structure

0.3.1

3 years ago

0.3.0

3 years ago

0.2.3

3 years ago

0.2.2

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.1.0

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago