bsc

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

root / semester_2 / algorithms / algo_061.md

algo_061.md (307B)


      1 # algo_061
      2 
      3 ### Problem Statement
      4 
      5 > Write an algorithm for finding the inorder successor helper node (`ins`) used in BST node deletion.
      6 
      7 ## Algorithm
      8 ```
      9 procedure ins(root)
     10 begin
     11     ptr ← RC(root);
     12     while (LC(ptr) ≠ NULL) do
     13         ptr ← LC(ptr);
     14     endwhile
     15     return ptr;
     16 end procedure
     17 ```
© 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