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 - 26 Sep 2004 06:25 GMT
> 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
[quoted text clipped - 5 lines]
> 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
Professor Slonneger - 26 Sep 2004 10:20 GMT
Quite correct young man.
Brusque - 26 Sep 2004 11:27 GMT
> Quite correct young man.
ROFL
Bryce - 27 Sep 2004 14:46 GMT
>Path: internal1.nntp.dca.giganews.com!border2.nntp.dca.giganews.com!border1.nntp.dca.giganews.com!nntp.giganews.com!news.moat.net!lon-transit.news.telstra.net!ken-in.news.telstra.net!news.telstra.net!news-server.bigpond.net.au!53ab2750!not-for-mail
>From: "Professor Slonneger" <Professor Slonneger@uiowa.edu.com>
[quoted text clipped - 17 lines]
>
>Quite correct young man.
That would be funny, if it was actually the guy's professor. I suspect
it's a hoax.
--
now with more cowbell
Mark Murphy - 26 Sep 2004 22:45 GMT
> 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
[quoted text clipped - 5 lines]
> 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.