Skip to content
/ dsa Public

DSA is a C library that implements complex datastructres and algorithms with help of "Mastering Algorithms with C Loudon" book

Notifications You must be signed in to change notification settings

Paran-oid/dsa

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DSA

Library specifically made to provide abstract datastructures and some algorithms.

Content

  • Graphs
  • Hashsets
  • Dictionaries(HashTables)
  • Dynamic Arrays
  • Linked Lists
  • Stacks
  • Queues
  • Trees
  • Priority Queues and Heaps
  • MISC memory related functionalities

General Structure

  1. create datastructure:
  2. use it depending on your needs
  3. destroy the datastructure

`

Set set;
set_create(&set, your_match_func, your_destroy_function);

// Do Something

set_destroy(&set);

About

DSA is a C library that implements complex datastructres and algorithms with help of "Mastering Algorithms with C Loudon" book

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published