Пример #1
0
 public void Search(String s) // Returns nothing if its empty, else goes to LLN to search.
     {
   if (head != null) head.Search(s);
   if (head == null)
     System.out.println(s + " wasn't found but would be at the beginning of the list.");
   System.out.println();
 }