#include #include #include typedef struct arvore arvore; struct arvore{ int folha; char cor; arvore *esq; arvore *dir; }; //suas funcoes auxiliares int main(int argc, char *argv[]) { char *str = NULL; scanf("%ms", &str); //chamar funcoes free(str); return 0; }