Skip to content

jjjllxx/coding-interview-university-cpp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

coding-interview-university-cpp

This repository contains C++ implementations of data structures and algorithms inspired by the Coding Interview University project.

Note:

  1. The goal of this repository is to learn and implement core concepts from scratch.
  2. The implementations may differ from the C++ Standard Template Library (STL).
  3. STL is avoided intentionally to reinforce understanding of the internal workings of data structures.

Structure

Running the Tests

1. Initial Setup (Run once)

cd coding-interview-university-cpp
mkdir bin
mkdir build

2. Compile the Project

cd build
cmake -DDSA_TEST=on ..
make -j16

3. Run Unit Tests

cd bin
./dsa_test

4. (Optional) Check for Memory Leaks

valgrind --leak-check=full ./dsa_test

About

This is the C++ implementation for coding interview university project.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published