Skip to content

Releases: datastructures-js/linked-list

@datastructures-js/linked-list-v6.1.3

14 Jul 20:52
9129483
Compare
Choose a tag to compare

[6.1.3] - 2024-07-14

Fixed

  • jsdocs

@datastructures-js/linked-list-v6.1.2

13 Jul 23:56
9db7c9c
Compare
Choose a tag to compare

[6.1.2] - 2024-07-13

Fixed

  • LinkedList removeEach edge case to disconnect removed nodes from the remaining nodes in the list.
  • LinkedList & DoublyLinkedList ts types, remove the necessity to cast to the custom node type in functions.

@datastructures-js/linked-list-v6.1.0

29 May 01:24
85ff748
Compare
Choose a tag to compare

[6.1.0] - 2023-05-28

Added

  • insertBefore to add a node before an existing node in the DoublyLinkedList.
  • insertAfter to add a node after an existing node in the DoublyLinkedList.

@datastructures-js/linked-list-v6.0.0

20 Mar 22:04
Compare
Choose a tag to compare

[6.0.0] - 2023-03-20

Changed

  • Allow inserting node types into the linked list.

@datastructures-js/linked-list-v5.2.5

10 Jan 01:54
Compare
Choose a tag to compare

[5.2.5] - 2023-01-09

Fixed

  • a bug in removeEach.

@datastructures-js/linked-list-v5.2.4

05 Sep 05:33
Compare
Choose a tag to compare

[5.2.4] - 2022-09-04

Fixed

  • typo in LinkedListNode.

@datastructures-js/linked-list-v5.2.3

16 Aug 04:55
Compare
Choose a tag to compare

[5.2.3] - 2022-08-15

Fixed

  • add types to package.json

@datastructures-js/linked-list-v5.2.2

20 Jun 03:31
Compare
Choose a tag to compare

[5.2.2] - 2022-06-19

Fixed

  • readme.

@datastructures-js/linked-list-v5.2.1

16 Feb 09:20
5f31f45
Compare
Choose a tag to compare

[5.2.1] - 2022-02-16

Fixed

  • TS types and readme.

@datastructures-js/linked-list-v5.2.0

14 Feb 08:40
5a3b443
Compare
Choose a tag to compare

[5.2.0] - 2022-02-14

Added

  • .find now accepts a second param as the starting node in both types.
  • .findReverse added to DoublyLinkedList.
  • .fromArray static method added to both types.