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
- Host: GitHub
- URL: https://github.com/catrinlam/bst-in-c
- Owner: catrinlam
- Created: 2023-06-15T14:32:10.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-15T14:46:39.000Z (about 3 years ago)
- Last Synced: 2025-02-14T05:34:55.863Z (over 1 year ago)
- Language: C
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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