Cabana_Mario_Ariel_F

TP4E2_NodoPila_casiDefinitivo

Oct 28th, 2020 (edited)
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.14 KB | None | 0 0
  1. public class NodoPila<T> {
  2.     T data;
  3.     NodoPila<T> next;
  4.     public NodoPila(T d) {
  5.         data=d;
  6.         next=null;      
  7.     }
  8. }
  9.  
Add Comment
Please, Sign In to add comment