Posts by Filippe Pimentel • 29 points
1 post
-
2
votes1
answer865
viewsQ: Method to Invert a Single Chained List
How to make the method ImprimirLista() print the inverted list. Exemplo [1][2][3] Imprimir [3][2][1] Edit 1 I can’t use Collections public class ListaEncadeada { No primeiro,ultimo; int totalNos;…