Skip to content

v0.2.0

Compare
Choose a tag to compare
@HotPotatoC HotPotatoC released this 22 Mar 17:29
· 15 commits to master since this release

⚠ Things Removed ⚠

  • linkedlist.CircularLinkedList has been removed (103c41f)
  • PushMid() has been removed (103c41f)

✨ What's New

  • Added hashtable.HashTable[K, V] data structure using linear probing (3e49c46)
  • Added hashtable.ChainedHashTable[K, V] data structure using seperate chaining (3e49c46)
  • Added queue.CircularQueue[V] data structure (9b00bd8)
  • Added queue.Deque[V] data structure (9b00bd8)

🧹 Updates

  • Change type parameter V in linkedlist.LinkedList[V] from constraints.Ordered to comparable (103c41f)
  • Change type parameter V in linkedlist.Node[V] from constraints.Ordered to comparable (103c41f)

🎎 Others

  • Added more testing and benchmarks