Skip to content

chensiyuan030105/data-structure-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
    

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors