Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 517 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 517 Bytes

LDSA

Learning Data Structures and Algorithms in C/C++ from the beginning.

Prerequisites

  • A C/C++ compiler, e.g. gcc, clang.
  • to compile a C/C++ file, run
gcc -o <output_file> <source_file.c>
g++ -std=c++11 -o <output_file> <source_file.cpp>

Example Folder Structure

src
├── Algorithms
│  ├── Searching
│  └── Sorting
├── Basic
│  ├── C
│  └── Cpp
└── DataStructures
   ├── Array
   ├── LinkedList
   └── Tree