Skip to content

Releases: Ts-Pytham/GenericCollectionsExtension

v1.4.0

08 Jan 05:26
2be2a8a
Compare
Choose a tag to compare

What's Changed

  • Feature-02 (1.4.0) Implementation of the graph class by @Ts-Pytham in #21

Full Changelog: 1.3.0...1.4.0

v1.3.0

30 Dec 17:14
Compare
Choose a tag to compare

What's Changed

  • Feature-01 (1.3.0) Implementation of the TryPop and TryPeek methods in PriorityStack and PriorityQueue by @Ts-Pytham in #8
  • New unit testing for PriorityStack class.

Fixes

  • Fixed a bug that instead of sorting by highest priority, sorted by lowest priority in PriorityStack class.

Full Changelog: 1.2.0...1.3.0

v1.2.0

27 Dec 19:33
7ef3969
Compare
Choose a tag to compare

DoublyLinkedList:

New list type data structure:

  • Add and AddFirst method.
  • Clear method.
  • Find method.
  • GetFirst and GetLast method.
  • Remove method.
  • GetEnumerator and GetEnumerable method.
  • Contains method.

v1.1.0

15 Dec 05:43
Compare
Choose a tag to compare

SortedList:

  • The binary search method was created.
  • Indexers changes:
    • When the value of a position is to be changed, it is now added to the list and sorted according to the criterion.

Future Features:

  • New methods in SortedList (1.2.0):

    • Change of criterion in SortedList (reverse).
    • GetRange method.
  • New methods in ProrityStack (1.3.0):

    • TryPeek().
    • TryPop().
  • New methods in ProrityQueue (1.3.0):

    • TryDequeue().
    • TryPeek().
  • New methods in Deque (1.3.0):

    • TryPeekLast().
    • TryPeek().
    • TryPopLast().
    • TryPop().
  • New Graph data structure (1.5.0).