Skip to content
Anthony Christe edited this page Oct 23, 2013 · 1 revision

Recursion in Practice

General Recursion Practice
Recursion and Linked Lists

Provide pseudo-code for the recursive versions of the following methods for both single and double linked lists.

  • public void add(E item, int index)
  • public E remove(E item)

Don't forget to review other linked list methods from https://github.com/anthonyjchriste/ics211f13/wiki/Recursion-Part-2

Clone this wiki locally