Posts by free4k • 19 points
3 posts
-
-2
votes2
answers108
viewsQ: Convert add and remove functions in tree to recursive
I’m having trouble converting two tree functions into C recursive form. int insere_arvore(ArvBin* raiz, int valor){ if(raiz == NULL) return 0; NO* novo; novo = (NO*) malloc(sizeof(NO)); if(novo ==…
-
0
votes1
answer149
viewsQ: How do I redirect a non-existent htaccess url?
I need to redirect the following link: http://dominio.com/receitas-user/ID_do_usuario/nome_do_usuario To: http://dominio.com/receitas/author/nome_do_usuario Being nome_do_usuario and ID_do_usuario…
-
2
votes2
answers602
views