Skip to content

lucaimbalzano/Data_Structure_Algorithm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Data Structure & Algorithm

O(N) complexity means the time needed for the algorithm to work increases step by step as the amount of data it processes gets bigger.

Compile single source file:

 $ clang++ ./main.cpp -o out   

Build the project using cmake

# From your project root directory
$ cmake -S . -B cmake-build-debug

# Build the project
$ cmake --build cmake-build-debug

Debug

# Set the debug pointing your executable
$ lldb ./exec
$ breakpoint set --file ./path/main.cpp --line 10
$ print variable_name

About

📚 A comprehensive collection of essential data structures and algorithms.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors