PREV INDEX NEXT

Author: Stan Eisenstat
Subject: Re: [Cs223] Extra Header File Submission
Date: Friday, 03 Apr 2020, 21:15:40


    > Message Posted By: Unknown
    ...
    > For the implementation of my deque, I used Aspnes' stack implementation
    > from his notes on Data Structures and Programming Techniques. I cited this
    > in my log file, but since it exceeds the line limit, I created a new
    > header file in my local zoo folder and included this file in Deque.c. I
    > was wondering what the correct protocol for submitting is with this local
    > file included. Will it suffice to submit Deque.c with the #include
    > statement, or will I need to submit both Deque.c and the header file
    > containing Aspnes' stack. If so, will I need to change the path of the
    > #include at all? Thanks.

You need to submit the file containing Aspnes' code,
whether it is #include-d or linked to.  To verify that
you have submitted enough code to make your program,
run

  % /c/cs223/bin/testit 4 Qsort

Since you will be submitting both your and Aspnes'
code, the #include statement should be local.  That is,
it SHOULD NOT ACCESS YOUR OWN DIRECTORY.

--Stan-
PREV INDEX NEXT