Computer Science Fundamentals (CS153 2004S)
[Skip to Body]
Primary:
[Front Door]
[Current]
[Glance]
-
[Honesty]
[Instructions]
[Links]
[Search]
Groupings:
[EBoards]
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Readings]
[Reference]
Misc:
[Experiments in Java]
[Java API]
[Scheme Reference]
[Scheme Report]
[CS153 2003S]
[CS151 2003F]
[CS152 2000F]
[SamR]
Back to Building a Rational Class, Revisited. On to Designing Objects.
Held: Monday, 5 April 2004
Summary: Today we visit one of Java's core data structures: the array. We consider two applications of arrays in writing algorithms.
Related Pages:
Assignments:
Notes:
Overview:
Rational classes allowed
you to group logical aspects of a rational number into a whole.
type[] name = new type[size];
stuff,
you would write
double[] stuff = new double[5];
type[] name = { val1, val2, ..., valn }
;
int[] stuff = {3, 2, 6, 5};
name[index]
stuff with
stuff[3]
i held the value 3, then we could get
element 3 of the stuff with
stuff[i]
name.length
public double sum(double[] stuff) {
double total = 0; // The total of the numbers in stuff
int i; // A counter variable for stepping through
// the array
// Step through the array, adding each subsequent value
for(i = 0; i < stuff.length; i = i + 1) {
total = total + stuff[i];
}
// Return the total value
return total;
} // sum
public static long fib(int n) {
if (n < 2)
return n;
else
return fib(n-1) + fib(n-2);
} // fib(int)
private static long[] cache;
public static long fib(int n) {
// Ensure that the cache is big enough.
if ((cache == null) || (cache.length <= n)) {
cache = new long[n+1];
for (int i = 2; i <=n; i++)
cache[i] = -1;
cache[0] = 0;
cache[1] = 1;
}
// Check the cache. If it's not initialized, initialize it.
if (cache[n] == -1)
cache[n] = fib(n-1) + fib(n-2);
// Extract the value from the cache
return cache[n];
} // fib(int)
Back to Building a Rational Class, Revisited. On to Designing Objects.
[Skip to Body]
Primary:
[Front Door]
[Current]
[Glance]
-
[Honesty]
[Instructions]
[Links]
[Search]
Groupings:
[EBoards]
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Readings]
[Reference]
Misc:
[Experiments in Java]
[Java API]
[Scheme Reference]
[Scheme Report]
[CS153 2003S]
[CS151 2003F]
[CS152 2000F]
[SamR]
Disclaimer:
I usually create these pages on the fly
, which means that I rarely
proofread them and they may contain bad grammar and incorrect details.
It also means that I tend to update them regularly (see the history for
more details). Feel free to contact me with any suggestions for changes.
This document was generated by
Siteweaver on Fri May 7 09:43:24 2004.
The source to the document was last modified on Tue Jan 13 10:26:11 2004.
This document may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CS153/2004S/Outlines/outline.36.html.
You may wish to
validate this document's HTML
;
;
Check with Bobby