Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 364 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 364 Bytes

Data Structures:

  • set (Basic unordered set of things)
  • dset (disjount set/ union find set)
  • TDArray (two dimensional array)
  • Stack (LIFO Top, pop, push)
  • Queue (FIFO front, pop, push)
  • BTree (binary tree)

In Progress

  • Tree (Tree with no limit on number of children)
  • Equation (Represent mathematical equations in an AST)
  • Matrix
  • Graph representations