mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-07-10 16:49:50 -04:00
15 lines
330 B
Python
15 lines
330 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
# author: bt3gl
|
|
|
|
def search_bst(root, val):
|
|
|
|
if root is None or root.val == val:
|
|
return root
|
|
|
|
if val > root.val:
|
|
return search_bst(root.right, val)
|
|
|
|
else:
|
|
return search_bst(root.left, val)
|
|
|