Skip to content

assincrono/dsa.h

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

On my studies of data structures and algorithms, I am following the Coding Interview University Roadmap, and I have been playing around C++ at Codeforces for a while, so I figured why not implement the common data structures into a C++ library?

Features

  • Vectors (done)
  • Linked Lists (done)
  • Stack (backlog)
  • Hash table (backlog)

Build

I am using CMake to build the library, because building manually in C++ is hell. This is the workflow:

cmake -B build
cmake --build build
./build/simple_vector_test

About

Library for data structures and algorithms.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published