Posts by Lucas Máximo Dantas • 21 points
1 post
-
1
votes0
answers40
viewsQ: C++: Add an integer variable in an ordered way in a list
I need to add integers in an orderly way, within a list implementation that I developed. //Implementação dos nós para serem usados na lista NodeList::NodeList(int dataa){ this->next = NULL;…