Onoam / WAVLTree

Java implementation of WAVL Trees for Data Structures course
0 stars 0 forks source link

findNode function #26

Closed eytan-c closed 5 years ago

eytan-c commented 5 years ago

private WAVLNode findNode(int k) returns the node with the relevant key, and an external node otherwise.

eytan-c commented 5 years ago

wrote this as treeSearch and treePosition functions (from slides) #29