Pergunta de entrevista da empresa Accede Software Solutions

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

Respostas da entrevista

Sigiloso

8 de out. de 2016

I wrote a code

Sigiloso

25 de jul. de 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); }