Algorithms and OOD (CSC 207 2014S) : EBoards
Primary: [Front Door] [Schedule] - [Academic Honesty] [Disabilities] [Email] - [FAQ] [Teaching & Learning] [Grading] [Rubric] - [Calendar]
Current: [Assignment] [EBoard] [Lab] [Outline] [Reading]
Sections: [Assignments] [EBoards] [Examples] [Handouts] [Labs] [Outlines] [Partners] [Readings]
Reference: [Java 7 API] [Java Code Conventions] [GNU Code Conventions]
Related Courses: [CSC 152 2006S (Rebelsky)] [CSC 207 2013F (Rebelsky)] [CSC 207 2013S (Walker)] [CSC 207 2011S (Weinman)]
Misc: [SamR] [Glimmer Labs] [CS@Grinnell] [Grinnell] [Issue Tracker (Course)] [Issue Tracker (Textbook)]
Overview
How should we cite help?
At the top or bottom of your assignment: "My awesome mentor, Earnest, and my only slightly clueless colleague Sam, helped a lot with debugging on problem 3." "I also took info from http://www.stackoverflow.com/answers2silly232523412431/how-do-i-concatenate-strings-in-java.html"
What do you mean by "the stack"?
The area of memory used to keep track of local variables and other information for procedure calls. Most of the time, we think about your program using three kinds of memory: static memory (needed for the whole run of the program), the heap (used for things you allocated/free), and the stack (used for storing info on procedure calls).
Note that I'm doing the following on the whiteboard, but I've recorded something similar on the EBoard so that there's a record.
+-------+
| |
| heap |
| |
+-- v --+
| |
| |
+-- ^ --+
| |
| stack |
| |
+-------+
| static|
+-------+
For example, consider our recursive
exptprocedure.
public static double expt(double base, int power)
{
if (power == 0)
{
return 1.0;
} // if power == 0
else if ((power % 2) == 0)
{
double temp = expt(base, power/2);
return temp*temp;
} // if the power is even
else
{
double temp = expt(base, power-1);
return base * temp;
} // if the power is odd
} // expt(double, int)
Suppose we ask for 2.0^10 by calling
expt(2.0,10)
+------------+ TOP
| base: 2.0 |
| power: 10 |
| temp: ? |
+------------+ BOTTOM
That's the even case, so we do a recursive call. We need to keep the current base and power, so we add another "stack frame" to the stack.
+------------+ TOP
| base: 2.0 |
| power: 5 |
| temp: ? |
+------------+
| base: 2.0 |
| power: 10 |
| temp: ? | // next line: return temp*temp
+------------+ BOTTOM
That's the odd case. And it requires another recursive call.
+------------+ TOP
| base: 2.0 |
| power: 4 |
| temp: ? |
+------------+
| base: 2.0 |
| power: 5 |
| temp: ? | // next line: return base*temp
+------------+
| base: 2.0 |
| power: 10 |
| temp: ? | // next line: return temp*temp
+------------+ BOTTOM
Doing the next few cases, you'll see that we end up with
+------------+ TOP
| base: 2.0 |
| power: 0 |
| temp: ? |
+------------+
| base: 2.0 |
| power: 1 |
| temp: ? | // next line: return base*temp
+------------+
| base: 2.0 |
| power: 2 |
| temp: ? | // next line: return temp*temp
+------------+
| base: 2.0 |
| power: 4 |
| temp: ? | // next line: return temp*temp
+------------+
| base: 2.0 |
| power: 5 |
| temp: ? | // next line: return base*temp
+------------+
| base: 2.0 |
| power: 10 |
| temp: ? | // next line: return temp*temp
+------------+ BOTTOM
We then return from the topmost call.
+------------+ TOP
| base: 2.0 |
| power: 1 |
| temp: 1.0 | // next line: return base*temp
+------------+
| base: 2.0 |
| power: 2 |
| temp: ? | // next line: return temp*temp
+------------+
| base: 2.0 |
| power: 4 |
| temp: ? | // next line: return temp*temp
+------------+
| base: 2.0 |
| power: 5 |
| temp: ? | // next line: return base*temp
+------------+
| base: 2.0 |
| power: 10 |
| temp: ? | // next line: return temp*temp
+------------+ BOTTOM
And the next
+------------+ TOP
| base: 2.0 |
| power: 2 |
| temp: 2.0 | // next line: return temp*temp
+------------+
| base: 2.0 |
| power: 4 |
| temp: ? | // next line: return temp*temp
+------------+
| base: 2.0 |
| power: 5 |
| temp: ? | // next line: return base*temp
+------------+
| base: 2.0 |
| power: 10 |
| temp: ? | // next line: return temp*temp
+------------+ BOTTOM
And the next
+------------+ TOP
| base: 2.0 |
| power: 4 |
| temp: 4.0 | // next line: return temp*temp
+------------+
| base: 2.0 |
| power: 5 |
| temp: ? | // next line: return base*temp
+------------+
| base: 2.0 |
| power: 10 |
| temp: ? | // next line: return temp*temp
+------------+ BOTTOM
And the next
+------------+ TOP
| base: 2.0 |
| power: 5 |
| temp: 16.0 | // next line: return base*temp
+------------+
| base: 2.0 |
| power: 10 |
| temp: ? | // next line: return temp*temp
+------------+ BOTTOM
And the next
+------------+ TOP
| base: 2.0 |
| power: 10 |
| temp: 32.0 | // next line: return temp*temp
+------------+ BOTTOM
And we return 32.0.
Can you explain the difference between "step over", "step into", and "step out of"?
I can try. Consder the
exptfunction above. Suppose we're at the following line.
double temp = expt(base, power/2);
We might want to say "Just do the call; I don't care what happens."
That's "step over".We might want to say "Hmmm ... I think I need to look within the call." That's "step into".
We might say "Okay, I'm happy with the current procedure call. Let's return to the caller." That's "step out".
Primary: [Front Door] [Schedule] - [Academic Honesty] [Disabilities] [Email] - [FAQ] [Teaching & Learning] [Grading] [Rubric] - [Calendar]
Current: [Assignment] [EBoard] [Lab] [Outline] [Reading]
Sections: [Assignments] [EBoards] [Examples] [Handouts] [Labs] [Outlines] [Partners] [Readings]
Reference: [Java 7 API] [Java Code Conventions] [GNU Code Conventions]
Related Courses: [CSC 152 2006S (Rebelsky)] [CSC 207 2013F (Rebelsky)] [CSC 207 2013S (Walker)] [CSC 207 2011S (Weinman)]
Misc: [SamR] [Glimmer Labs] [CS@Grinnell] [Grinnell] [Issue Tracker (Course)] [Issue Tracker (Textbook)]
Copyright (c) 2013-14 Samuel A. Rebelsky.

This work is licensed under a Creative Commons Attribution 3.0 Unported License. To view a copy of this
license, visit http://creativecommons.org/licenses/by/3.0/
or send a letter to Creative Commons, 543 Howard Street, 5th Floor,
San Francisco, California, 94105, USA.