void inOrder(int x){ inOrder(leftChild[x]); queue.push_back(x); inOrder(rightChild[x]); return; }