public class Node{
public double info;
public Node link;
}
that describes a linked list of real numbers, write a recursive method for computing the sum of all the numbers from the given list. For extra credit: write a non-recursive method for performing the same computing task.