An open API service indexing awesome lists of open source software.

https://github.com/catrinlam/bst-in-c

Implement a BST for integers
https://github.com/catrinlam/bst-in-c

Last synced: about 1 year ago
JSON representation

Implement a BST for integers

Awesome Lists containing this project

README

          

# BST-in-c
C - VS code

Oct 2022

- Implement a BST for integers, assume no duplicate nodes
- bst.h : declares the interface of that tree
---
Helpful commands:

1. valgrind --leak-check=full ./a.out
2. gcc bst.c test_bst.c -o bst
3. ./bst