Resposta:
Letra C
void Stack::push(ItemType item) {
if(!isfull()){
structure[length] = item;
length++;
}else{
Throw “Stack is already full!”;
}
Explicação:
conferido no AVA
Copyright © 2024 ELIBRARY.TIPS - All rights reserved.
Lista de comentários
Resposta:
Letra C
void Stack::push(ItemType item) {
if(!isfull()){
structure[length] = item;
length++;
}else{
Throw “Stack is already full!”;
}
}
Explicação:
conferido no AVA