Releases: Ts-Pytham/GenericCollectionsExtension
Releases · Ts-Pytham/GenericCollectionsExtension
v1.4.0
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
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
v1.1.0
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).