package linkedlist; public class Nodo { Nodo next; E info; public Nodo(E info) { this.info = info; this.next = null; } }