Advertisement
ariestamirra

hapus depan

Nov 27th, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.11 KB | None | 0 0
  1. public static <T> Node hapusNode_Depan(Node<T> front) {
  2.         front = front.next;
  3.         return front;
  4.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement