linked-list-lib
Version:
This package contain some possibilities of implementations of linked lists
23 lines (15 loc) • 341 B
Markdown
Contain some possibilities of implementations of linked lists
```shell
npm i linked-list-lib
```
```ts
import { SinglyLinkedList } from 'linked-list-lib';
interface IData<T> {
name: T;
}
const linkedList = new SinglyLinkedList<IData<string>>();
linkedList.insertInBegin({ name: 'A'});
```