Skip to content

Computer Science study: Data structures, algorithms, system engineering concepts, etc.

Notifications You must be signed in to change notification settings

xcastilla/cs_study

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Computer Science study repository

A personal collection of algorithms, data structures and computer science concepts with some of their implementations for personal study.
Directories and code in them are organized by logical categories rather than in a functional way. Most of the algorithms and data structures come with a very simple test program that you can build by running the following inside their directory:

mkdir build && cd build
cmake ..
make

Disclaimer! This repository is still very WIP.

Repository organization

├── algorithms
│   └── graphs
│       ├── BFS
│       ├── DFS
│       ├── MST (Kruskal, Prim)
|       ├── Connected components
│       └── Dijkstra
├── data_structures
│   ├── AVL Tree
│   ├── Bloom Filter
│   ├── Graph
│   ├── Union Find sets
|   ├── Red Black Trees
│   └── Linked List
└── systems
    └── malloc

About

Computer Science study: Data structures, algorithms, system engineering concepts, etc.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published