1.2.1 • Published 2 years ago

linked-list-lib v1.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Description

Contain some possibilities of implementations of linked lists

Installation

    npm i linked-list-lib

Use

import { SinglyLinkedList } from 'linked-list-lib';

interface IData<T> {
    name: T;
}

const linkedList = new SinglyLinkedList<IData<string>>();

linkedList.insertInBegin({ name: 'A'});
1.2.1

2 years ago

1.2.0

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago