forked from mlkasule/RecursiveLab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArraySum.java
41 lines (33 loc) · 959 Bytes
/
ArraySum.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* A recursive method to sum the values in an array of integers.
* Create a file ArraySum.java and add the recursive method
* public int sumOfArray (Integer[] a,int index).
* Note that ‘a’ is an array of type Integer that
* is specified in the driver file, and ‘index’ is an integer that
* shows which number in the array to sum next.
*/
public class ArraySum {
private int arrSum = 0; // sum accumulator
/*
* no arg constructor
*/
public ArraySum() {
}
/*
* @param a array of integers.
*
* @param index the index of the element in the array.
*
* @return the sum of the array.
*/
public int sumOfArray(Integer[] a, int index) {
// a = {3,5,2,6,7,1};
if (index == 0) {
arrSum = a[index]; // base case
} else {
int previousElementIndex = (index - 1); // element on the right of current index
arrSum = a[index] + sumOfArray(a, (previousElementIndex)); // reproduction
}
return arrSum;
}
}