JSAV ListSize Slideshow

<<<>>>
1 / 28

This slideshow will demonstrate the execution of the ListSize method.

  1. int ListSize(List list)
  2. {
  3. if( isNull(list) )
  4. return 0
  5. else
  6. return ListSizeHelper(list, 0 )
  7. }
ListSize Public Method (below)
  1. int ListSizeHelper(List list, int count)
  2. {
  3. if( isNull(list) )
  4. return count
  5. else
  6. return ListSizeHelper(cdr(list), add1(count) )
  7. }
ListSize Private Helper Method (below)
  1. 20
  2. 61
  3. 102
  4. 73
List
Count : 0