CSC 250
Project 8: Recursion & ...
Due: Suggested but not required
Problems to work on : Iterative & Recursive
- Book : 19.5
- Book: 19.9
- Summation
- Print list backward
- Count elements in a list
- Count elements in a list that are > K
- Is K in a list L, where L is unsorted
- Is K in a list L, where L is sorted
- TSeq1 is defined as
- 1, 2, 4, 7, 13, ..
- Find the next term by adding the values of the 3 terms before it in
the sequence
- TSeq2 is defined as
- 1, 2, 3, 4, 6, ..
- Find the next term by adding the values of the 3 terms before it
- Find the next term by adding the first and third number before it in
the sequence