Skip to content

Latest commit

 

History

History
74 lines (65 loc) · 873 Bytes

File metadata and controls

74 lines (65 loc) · 873 Bytes

data-structure-code

Set up envinronment

git clone git@github.com:catchorg/Catch2.git
cd Catch2
cmake -Bbuild . -DBUILD_TESTING=OFF
cmake --build build/ --config release --target install
cd data-structure-code
mkdir build
cd build
cmake ..
make

Running

List
  • Sequence List
  • Link List
  • Sequence Stack
  • Link Stack

Testing

List
  • Sequence List
    cd build/bin
    ./SequenceList_test
    
  • Link List
    cd build/bin
    ./LinkList_test
    
  • Sequence Stack
    cd build/bin
    ./SequenceStack_test
    
  • Link Stack
    cd build/bin
    ./LinkStack_test
    
  • Sequence Queue
    cd build/bin
    ./SequenceQueue_test
    
  • Link Queue
    cd build/bin
    ./LinkQueue_test