void preorderTraversal(struct node*tree) {
if (tree != NULL) { printf("%d", tree->data); tree->left=preorderTraversal(tree->left);