Node reverse(Node head) {
Node previous = null;
Node current = head;
Node forward;
while (current != null) {
forward = current.next;
current.next = previous;
previous = current;
current = forward;
}
return previous;
}
Come è esattamente l'inversione dell'elenco? Ho capito che per prima cosa imposta il secondo nodo su forward
. Quindi dice che current.next
è uguale a un nodo null
previous
. Quindi dice che previous
è ora current
. Infine current
diventa forward
?Come invertire una lista collegata?
Non riesco a capire questo e come il suo rovesciamento. Qualcuno può spiegare come funziona?
Questo è python? – Ben
'da __future__ import braces'? – Johnsyweb
colpa mia .. risolto per java! – user1176235