Create an elegant single-pass algorithm


Discuss the below:

Task:

You have a computer where multiplication is an enormously expensive operation compared to addition. Consider an algorithm for computing cubes using only addition (FYI: the first 5 cubes are 13 = 1, 23 = 8, 33 = 27, 43 = 64 and 53 = 125). This computation can be made using a two-pass (i.e. two loop) algorithm:

public int cube(int n) {

int result = 0;
int square = 0;

for (int i = 0; i < n; i++) {
square += n;
}

for (int j = 0; j < n; j++) {
result += square;
}

return result;
}
Write (in Java) an elegant single-pass (one loop) algorithm for computing cubes using only addition. (Hint: there is a pattern that you must find.) Note that the loop cannot be nested.

Solution Preview :

Prepared by a verified Expert
Data Structure & Algorithms: Create an elegant single-pass algorithm
Reference No:- TGS01935943

Now Priced at $20 (50% Discount)

Recommended (91%)

Rated (4.3/5)