Project confusion  
Author Message
buffer_88





PostPosted: 2004-9-26 9:40:00 Top

java-programmer, Project confusion Okay I'm not exactly sure what I'm supposed to do. I know I should
create a file that creates an abstract tree but I can't figure out
exactly what the other programs do and how I should use them to
implement an abstract tree. So if someone could please shed some light
as to what direction I should be going in it would be a lot of help.
The website as to where the assignment is located is as follows:
http://www.cs.uiowa.edu/~slonnegr/plc/. The pdf that describes the
homework is under the link Parse Homework under the Homework header.
Agains thanks for the help.
 
Hal Rosser





PostPosted: 2004-9-26 13:25:00 Top

java-programmer >> Project confusion "Henry Jordon" <email***@***.com> wrote in message
news:email***@***.com...
> Okay I'm not exactly sure what I'm supposed to do. I know I should
> create a file that creates an abstract tree but I can't figure out
> exactly what the other programs do and how I should use them to
> implement an abstract tree. So if someone could please shed some light
> as to what direction I should be going in it would be a lot of help.
> The website as to where the assignment is located is as follows:
> http://www.cs.uiowa.edu/~slonnegr/plc/. The pdf that describes the
> homework is under the link Parse Homework under the Homework header.
> Agains thanks for the help.

You should really get clarification from Professor Slonneger
Also, you should have noted in your syllabus:
Policies

1) You are encouraged to discuss the course material with other students,but
all written work and programming projects must be your work alone.The grader
will be looking for similarities in assignment submissions.

2) The Departmental policy with regard to cheating suggests a penalty
between a zero on the assignment and an F in the course for a first offense.
A second offense will result in a penalty between an F in the course and a
recommendation of expulsion to the Dean of the College. The full policy on
academic misconduct is on-line in the College's Student Academic Handbook




---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.769 / Virus Database: 516 - Release Date: 9/25/2004


 
Professor Slonneger





PostPosted: 2004-9-26 17:21:00 Top

java-programmer >> Project confusion Quite correct young man.


 
 
Brusque





PostPosted: 2004-9-26 18:28:00 Top

java-programmer >> Project confusion
"Professor Slonneger" <Professor email***@***.com> wrote in message
news:yRv5d.4987$email***@***.com...
> Quite correct young man.
>
>

ROFL


 
 
Mark Murphy





PostPosted: 2004-9-27 5:46:00 Top

java-programmer >> Project confusion Henry Jordon wrote:
> Okay I'm not exactly sure what I'm supposed to do. I know I should
> create a file that creates an abstract tree but I can't figure out
> exactly what the other programs do and how I should use them to
> implement an abstract tree. So if someone could please shed some light
> as to what direction I should be going in it would be a lot of help.
> The website as to where the assignment is located is as follows:
> http://www.cs.uiowa.edu/~slonnegr/plc/. The pdf that describes the
> homework is under the link Parse Homework under the Homework header.
> Agains thanks for the help.
I'd give you 2 points for acknowledging that this is a HW problem and
asking for direction rather than asking for anyone to solve the problem
for you!

Anyway, first you should try to clarify this with the teacher, he's the
only one that really matters, you need to understand what he is looking
for. When you talk to him I would also talk to him about posting to
newsgroups. Some teachers will realize that used correctly it is a
resource to help you learn, some don't. Find out his stance, you don't
know if he visits here! And if something comes of it, it is better to be
open early before you come to finals and then he raises a stink.

If I get your question right, you don't understand why he is asking for
multiple files. Think of it this way. Except for very simple programs
you never throw everything into one method. Instead, you write multiple
methods that do one thing well, this eliminates redundant code. You do
the same thing with multiple class/files. Ex. ParseWren.java should be
passed exactly what he describes and should return exactly what he
describes. It should not contain anything to print the output, thats
handled in ParseDriver.java.