September 2023 2 56 Report
A seguir é apresentado o código da função "existe(li, item)", a qual verifica se o “item” existe ou não na lista “li”.



bool existe(struct Lista* li, int item) {
assert(li != NULL);
struct No* aux = __________;
while(__________){
if(aux->info == item){
return true;
}
__________
}
return false;
}
Assinale a alternativa que preenche corretamente as lacunas do código.

Alternativas:

a)
NULL / aux != NULL / aux = aux->proximo

b)
li->inicio / aux == NULL / aux = aux->proximo

c)
NULL / aux == NULL / aux = aux->proximo

d)
li->inicio / aux != NULL / aux = aux->proximo

e)
li->inicio / aux != NULL / aux = li->proximo
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Lista de comentários


Helpful Social

Copyright © 2024 ELIBRARY.TIPS - All rights reserved.