public class Node{
public String info;
public Node link;
}
that describes a linked list of strings (describing classes), write a recursive method
for printing, from the given list, all the strings that starts with "CS".
For extra credit: write a non-recursive method for performing the same printing task.