11, 6, 8, 19, 4, 13, 5, 17, 43, 49, 16, 31, 32
24,27,32,4,3,6,16,5,12,1,8,2
and
32,27,3,4,16,6,24,12,5,8,2,1
.
Insert the data into the BST then pull it out using an In-Order traversal. The worst-case complexity of the insertions is O(n2). The In-Order traversal is O(n), so the worst-case complexity is O(n2).