Skip to content

spacekookie/CDSL

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CDSL

A data structure library written in C

Data Structures:

  • adeque = Deque (array)
  • aqueue = Queue (array)
  • queue = Queue (linked)
  • astack = Stack (array)
  • stack = Stack (linked)
  • alist = List (array)
  • list = List (linked)
  • maxheap = Max Heap (array)
  • minheap = Min Heap (array)
  • hashtable = (array+linked)
  • binarytree = (linked)

2D Structures:

  • transform = Matrix/Transform
  • plane = Plane
  • vector = Vector
  • line = Line
  • array2d = A 2D array

Example Usage:

  • examples

About

📚 Fork for libreedb

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 97.3%
  • C++ 1.9%
  • Other 0.8%