Lista + Nodo

This commit is contained in:
La Programmatrice Verde
2026-03-24 08:39:24 +01:00
parent 1e6b15528b
commit 862a32aa39
2 changed files with 32 additions and 0 deletions

11
src/linkedlist/Nodo.java Normal file
View File

@@ -0,0 +1,11 @@
package linkedlist;
public class Nodo<E> {
Nodo next;
E info;
public Nodo(E info) {
this.info = info;
this.next = null;
}
}