Jump to content

Numa árvore de pesquisa, como faço para perguntar ao usuário para alterar dados de um certo ID (que é único) em que nesse ID tem outros dados agregados?


Mara Pereira

Recommended Posts

Código até agora:

void Alterar(ARVORE arvore, int valor, int val)
{
    if(arvore != NULL)
    {
        printf("\n Qual Posto de combustível pretende alterar dados (inserir ID)");
        scanf("%d",&val);
        procurar(arvore,val);
        exibirEmOrdem_id(val);  
        Alterar(arvore -> pDados, );
    }
}
Link to comment
Share on other sites

  • 3 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.