diff options
author | bd <bdunahu@operationnull.com> | 2024-05-19 00:18:44 -0600 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-05-19 00:18:44 -0600 |
commit | de8ec8026b3fbf60cfa95ef1c48ad53e1b922d38 (patch) | |
tree | 405a4a39b98535684f356ca04f9cde0ceaf34ebb /binary-search/binary-search.scm | |
parent | f69448ded971deb6a702894499c718e4a26857dd (diff) |
Initial binary search tree
Diffstat (limited to 'binary-search/binary-search.scm')
-rw-r--r-- | binary-search/binary-search.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/binary-search/binary-search.scm b/binary-search/binary-search.scm new file mode 100644 index 0000000..95513df --- /dev/null +++ b/binary-search/binary-search.scm @@ -0,0 +1,7 @@ +(define-module (binary-search)) + +(define-public (make-empty-bst) + #t) + +(define-public (bst-member-p bst e) + #f) |