Computer Science II

Fill in the blanks to implement a recursive algorithm that returns a concatenation of the strings in reverse order from the linked list. The public helper function that calls the recursive function is given: Use the getNext() and getInfo() methods. public String Reverse(){ return Reverse(head); } [7 pts] ................
................