Пример #1
0
 public void Delete(
     String s) // Returns an error if there is no one to delete; else it goes to LLN delete.
     {
   if (head != null) head = head.Delete(s);
   else System.out.println("ERROR: THERE IS NOTHING TO DELETE!");
 }