0.3.1 • Published 7 months ago

@jaydenlee/mini-data-structure v0.3.1

Weekly downloads
-
License
-
Repository
-
Last release
7 months 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

7 months ago

0.3.0

7 months ago

0.2.3

9 months ago

0.2.2

9 months ago

0.2.1

9 months ago

0.2.0

9 months ago

0.1.0

9 months ago

0.0.9

9 months ago

0.0.8

9 months ago

0.0.7

9 months ago

0.0.6

9 months ago

0.0.5

9 months ago

0.0.4

9 months ago

0.0.3

9 months ago

0.0.2

9 months ago

0.0.1

9 months ago