Make a binary search tree by inserting the numbers 27, 15, 42, 12, 11, 5, 2, 1, 97, 13, 18, 16, 17, 45, one at a time. 
 a) 27, 15, 42, 12, 11, 5, 2, 1, 13, 18, 16, 17, 45, 97 
b) 1, 2, 5, 11, 12, 13, 15, 16, 17, 18, 27, 42, 45, 97 
c) 97, 45, 42, 27, 18, 17, 16, 15, 13, 12, 11, 5, 2, 1 
d) 1, 2, 5, 11, 12, 13, 15, 16, 17, 18, 27, 42, 45, 97