Insert after Node
public static boolean addAfter(IntNode front, int target, int item){
for (IntNode ptr = front; ptr != null; ptr = ptr.next){
if (ptr.data == target){
ptr.next = new IntNode(item, ptr.next);
return true;
}
}
return false;
}