Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 662 Bytes

README.md

File metadata and controls

42 lines (28 loc) · 662 Bytes

Introduction

中文 | English

This is a repository for learning data structures and algorithms, implemented with C.

Prerequisite

  • gnu autotools, install on macos:
brew install autoconf automake libtool
  • check for unit test, install on macos:
brew install check

Build

clone this repo, and then:

autoreconf --install
./configure
make

if autoreconfg command is not found, please check autotools is installed, and PATH environment variable is set correctly.

Test

make check

TODO

Tree

  • binary search tree
  • avl tree