MCPcopy Create free account
hub / github.com/acm-clan/algorithm-stone / treeMinimum

Method treeMinimum

templates/rb.cpp:369–376  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

367 }
368
369 RBTreeNode* treeMinimum(RBTreeNode* x)
370 {
371 auto p = x;
372 while (p->left != nil) {
373 p = p->left;
374 }
375 return p;
376 }
377
378 void deleteInternal(RBTreeNode* z)
379 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected