Pregunta de entrevista de Accede Software Solutions

About your projects? and your interest? Reverse a Linked List

Respuestas de entrevistas

Anónimo

8 oct 2016

I wrote a code

Anónimo

25 jul 2017

We can do this using ListIterator ListIterator i=li.listIterator(li.size()); while(i.hasPrevious()) { String data=i.previous().toString(); System.out.println(data); }