How to insert a node into a binary tree? Always gives segmentation error when code enters if (arv == NULL)
struct no {
int info;
struct no *esq;
struct no *dir;
};
typedef struct no node;
struct node *insere (node *arv, int valor) {
if (arv == NULL) { //aqui esta o erro
node p = malloc(sizeof(node));
p.info = valor;
p.esq = NULL;
p.dir = NULL;
*arv = p;
return arv;
}
else if (valor > arv->info) {
arv->dir = insere(arv->dir, valor);
return arv->dir;
}
else {
arv->esq = insere(arv->esq, valor);
return arv->esq;
}
void imprime (node *arv) {
if (arv != NULL) {
imprime(arv->esq);
printf("\n %d", arv->info);
imprime(arv->dir);
}
}
int main (void) {
node *arv;
arv->info = 1;
arv->dir = NULL;
arv->esq = NULL;
insere(arv, 2);
insere(arv, 3);
imprime(arv);
}