Given an array representing insertion order in a BST, find the root-to-node path for any given node.
Sigiloso
1) Take to variables loverLimit and upperLimit 2) for each element in array 3) If element == node ; add element to path and return 4) If element is less than Node 5) if element is greater than than lower limit 6) add element to the path 7) update the lowerLimit = element 8) else move without doing anything