bsc

Comprehensive codebase and cou...
Log | Files | Refs | Activity | README | LICENSE

root / semester_2 / algorithms / algo_057.md

algo_057.md (364B)


      1 # algo_057
      2 
      3 ### Problem Statement
      4 
      5 > Write a recursive algorithm to search an element in a Binary Search Tree (BST).
      6 
      7 ## Algorithm
      8 ```
      9 procedure search(T, key)
     10 begin
     11     if (T = NULL or INFO(T) = key) then
     12         return T;
     13     else if (key < INFO(T)) then
     14         return search(LC(T), key);
     15     else
     16         return search(RC(T), key);
     17     endif
     18 end procedure
     19 ```
© notamitgamer • Site Built: 2026-09-05 01:53:16 UTC • git-mirror commit: c170d72 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror