This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
haas:fall2022:data:projects:ael0 [2022/08/18 14:20] – [Background] wedge | haas:fall2022:data:projects:ael0 [2022/08/18 15:02] (current) – [Submit Tool Usage] wedge | ||
---|---|---|---|
Line 87: | Line 87: | ||
====menu==== | ====menu==== | ||
- | * Presents the user with a menu (reference sample output below for menu | + | * Presents the user with a menu (reference sample output below for menu specifications), |
- | | + | |
* use numbers for input (don't get fancy) | * use numbers for input (don't get fancy) | ||
- | * use numbers | + | * use numbers |
- | | + | * accept menu and general program input from STDIN (value followed by ENTER). |
- | * accept menu and general program input from STDIN (value followed by | + | * fscanf() would be an excellent function |
- | | + | |
- | * fscanf() would be an excellent function | + | |
- | | + | |
<cli> | <cli> | ||
Line 116: | Line 112: | ||
* build list | * build list | ||
- | * prompt the user to enter number after number, | + | * prompt the user to enter number after number, |
- | | + | |
- | | + | |
* We will check for a -1 in the array to signify the end of our list | * We will check for a -1 in the array to signify the end of our list | ||
- | * if you' | + | * if you' |
- | | + | |
- | | + | |
<cli> | <cli> | ||
Line 139: | Line 131: | ||
* display list forward | * display list forward | ||
- | * From the first (zero-th) element | + | * From the first (zero-th) element |
- | | + | |
* display the contained numbers, along with their array index. | * display the contained numbers, along with their array index. | ||
- | * as | + | * as |
- | | + | * I want you to have some sort of **display()** function; |
- | * I want you to have some sort of **display()** function; | + | |
- | | + | |
- | | + | |
- | | + | |
<cli> | <cli> | ||
Line 164: | Line 151: | ||
* display list backward | * display list backward | ||
- | * From the list termination value (the -1 following the last element) | + | * From the list termination value (the -1 following the last element) to the beginning. |
- | | + | |
* display the contained numbers, along with their array index. | * display the contained numbers, along with their array index. | ||
- | * as | + | * as |
- | | + | |
<cli> | <cli> | ||
Line 191: | Line 176: | ||
* prompt for array index (prompt will display to STDERR) | * prompt for array index (prompt will display to STDERR) | ||
* accept new value from the user | * accept new value from the user | ||
- | * without | + | * without |
- | | + | |
* this will likely involve shifting some data | * this will likely involve shifting some data | ||
- | * this functionality | + | * this functionality |
- | | + | |
* do NOT use global variables; pass and return necessary data | * do NOT use global variables; pass and return necessary data | ||
- | * no output of any kind should take place in **insert()**, | + | * no output of any kind should take place in **insert()**, |
- | | + | |
<cli> | <cli> | ||
Line 226: | Line 208: | ||
* prompt for array index (prompt will display to STDERR) | * prompt for array index (prompt will display to STDERR) | ||
* accept new value from the user | * accept new value from the user | ||
- | * without | + | * without |
- | | + | |
* this will likely involve shifting some data | * this will likely involve shifting some data | ||
- | * this functionality | + | * this functionality |
- | | + | |
* do NOT use any global variables; pass and return necessary data | * do NOT use any global variables; pass and return necessary data | ||
- | * no output of any kind should take place in **append()**, | + | * no output of any kind should take place in **append()**, |
- | | + | |
<cli> | <cli> | ||
Line 268: | Line 247: | ||
* obtain from list | * obtain from list | ||
* prompt for array index (prompt will display to STDERR) | * prompt for array index (prompt will display to STDERR) | ||
- | * obtain value at array index and place it in a standalone variable | + | * obtain value at array index and place it in a standalone variable (to be displayed to STDOUT) |
- | | + | * adjust |
- | * adjust | + | * this functionality |
- | | + | |
- | * this functionality | + | |
- | | + | |
* do NOT use global variables; pass and return necessary data | * do NOT use global variables; pass and return necessary data | ||
- | * The "The value you obtained:" | + | * The "The value you obtained:" |
- | | + | |
- | | + | |
<cli> | <cli> | ||
Line 309: | Line 283: | ||
* clear list | * clear list | ||
- | * empty the array, leaving it in an initial state (-1 at the 0 index, | + | * empty the array, leaving it in an initial state (-1 at the 0 index, more places if it messes up your reverse list display) |
- | | + | * if you' |
- | * if you' | + | |
- | | + | |
- | | + | |
===quit=== | ===quit=== | ||
* quit | * quit | ||
- | * Each menu item should correspond to a discrete | + | * Each menu item should correspond to a discrete |
- | | + | * Additionally, |
- | | + | * basically, when appending, have a function that handles the actual append operation, but do the input and output |
- | | + | * This list, for now, will be housed within |
- | | + | * What if you exceed |
- | * Additionally, | + | * A " |
- | | + | |
- | | + | |
- | * basically, when appending, have a function that handles the actual | + | |
- | | + | |
- | | + | |
- | | + | |
- | * This list, for now, will be housed within | + | |
- | | + | |
- | | + | |
- | * What if you exceed | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | * A " | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
=====Further output requirements===== | =====Further output requirements===== | ||
Line 493: | Line 444: | ||
* Project must be submit on time, by the posted deadline. | * Project must be submit on time, by the posted deadline. | ||
- | * Late submissions will lose 33% credit per day, with the submission | + | * Late submissions will lose 33% credit per day, with the submission window closing on the 3rd day following the deadline. |
- | | + | |
* All code must compile cleanly (no warnings or errors) | * All code must compile cleanly (no warnings or errors) | ||
- | * Compile with the **-Wall** and **--std=gnu99** compiler flags | + | * Compile with the **-Wall** and **--std=gnu18** compiler flags |
- | * all requested functions must be implemented in the related library | + | * all requested functions must be implemented in the related library or program |
- | | + | * all requested functionality |
- | * all requested functionality | + | |
- | | + | |
- | | + | |
* Executed programs must display in a manner similar to provided output | * Executed programs must display in a manner similar to provided output | ||
- | * output | + | * output |
- | | + | |
* Processing must be correct based on input given and output requested | * Processing must be correct based on input given and output requested | ||
* Output, if applicable, must be correct based on values input | * Output, if applicable, must be correct based on values input | ||
Line 510: | Line 456: | ||
* Code must be commented | * Code must be commented | ||
* Any "to be implemented" | * Any "to be implemented" | ||
- | * these " | + | * these " |
- | | + | * Sufficient |
- | * Sufficient | + | |
- | | + | |
* No global variables, no goto statements, no manual calling of main()! | * No global variables, no goto statements, no manual calling of main()! | ||
- | * at minimum, a discrete **append()**, | + | * at minimum, a discrete **append()**, |
- | | + | * with the exception of your display function(s), |
- | * with the exception of your display function(s), | + | |
- | | + | |
* Track/ | * Track/ | ||
* Do NOT use any **goto** statements. | * Do NOT use any **goto** statements. | ||
- | * Submit | + | * Submit |
- | | + | |
====Submit Tool Usage==== | ====Submit Tool Usage==== | ||
Line 530: | Line 471: | ||
<cli> | <cli> | ||
- | lab46: | + | lab46:~/src/SEMESTER/data/ael0$ submit data ael0 ael0.c |
Submitting data project " | Submitting data project " | ||
-> ael0.c(OK) | -> ael0.c(OK) | ||
SUCCESSFULLY SUBMITTED | SUCCESSFULLY SUBMITTED | ||
- | lab46: | + | lab46:~/src/SEMESTER/ |
</ | </ | ||
Line 555: | Line 496: | ||
Additionally: | Additionally: | ||
- | * Solutions not abiding | + | * Solutions not abiding |
- | | + | * Solutions |
- | * Solutions | + | * Solutions not utilizing indentation to promote scope and clarity will be subject to a 25% overall deduction |
- | | + | * Solutions not organized and easy to read (assume a terminal at least 90 characters wide, 40 characters tall) are subject to a 25% overall deduction |
- | * Solutions not utilizing indentation to promote scope and clarity will | + | |
- | | + | |
- | * Solutions not organized and easy to read (assume a terminal at least | + | |
- | | + | |
- | | + | |