User Tools

Site Tools


Sidebar

projects

  • dsi0 (due 20150607)
  • sln0 (due 20150607)
  • sln1 (due 20150607)
  • sll0 (due 20150607)
  • sll1 (due 20150614)
  • sll2 (due 20150614)
  • sll3 (due 20150621)
  • sll4 (due 20150621)
  • dln0 (due 20150628)
  • dll0 (due 20150628)
haas:summer2015:data:projects:sll3

Corning Community College

CSCS2320 Data Structures

~~TOC~~

Project: SLL3

Errata

This section will document any updates applied to the project since original release:

  • revision #: <description> (DATESTAMP)

Objective

This is a transitional project, making a few modifications to the list struct forcing some changes to a few functions so that we can better explore the next topic (in sll4).

As such, while this is a standalone project, it should be considered a small one, and one that is given out in combination with another (again: sll4), so be mindful of time management.

You will need to complete this project prior to upgrading to sll4.

Project Overview

list.h

For this project, we need to make a couple modifications to the list struct (which you can also check out in inc/list.h):

struct list {
    Node              *first;           // pointer to start of list
    Node              *last;            // pointer to end of list
    struct list       *after;           // pointer to the next list
    unsigned long int  qty;             // number of nodes in list
};
typedef struct list    List;            // because we deserve nice things

Specifically, we have an after pointer, so that we can point to an entirely separate list, along with a newly added qty variable, which will keep track of the number of nodes in the list.

To implement qty, all list functions that perform manipulations to the list will need to see some updating (insert(), append(), obtain(), and mklist()).

mklist() should also set the list's after pointer to a sane initial state (NULL).

Expected Results

To assist you in verifying a correct implementation, a fully working implementation of the node library, list library (with new modifications), and group library should resemble the following:

list library

Here is what you should get for all the functions completed so far in the list library (sll0+sll1+sll2+sll3):

lab46:~/src/data/sll3$ bin/verify-list.sh 
======================================================
=     Verifying Singly-Linked List Functionality     =
======================================================
    [mklist] Total:  21, Matches:  21, Mismatches:   0
    [insert] Total:  21, Matches:  21, Mismatches:   0
  [displayf] Total:   4, Matches:   4, Mismatches:   0
    [getpos] Total:   8, Matches:   8, Mismatches:   0
    [setpos] Total:   9, Matches:   9, Mismatches:   0
    [append] Total:  21, Matches:  21, Mismatches:   0
[searchlist] Total:  11, Matches:  11, Mismatches:   0
    [cplist] Total:  14, Matches:  14, Mismatches:   0
  [displayb] Total:   6, Matches:   6, Mismatches:   0
   [compare] Total:  15, Matches:  15, Mismatches:   0
    [obtain] Total:  44, Matches:  44, Mismatches:   0
 [clearlist] Total:   3, Matches:   3, Mismatches:   0
    [rmlist] Total:   3, Matches:   3, Mismatches:   0
  [swapnode] Total:   9, Matches:   9, Mismatches:   0
  [sortlist] Total:  27, Matches:  27, Mismatches:   0
======================================================
   [RESULTS] Total: 210, Matches: 210, Mismatches:   0
======================================================
lab46:~/src/data/sll3$ 

Submission

Project Submission

When you are done with the project and are ready to submit it, you simply run make submit:

lab46:~/src/data/PROJECT$ make submit
...

Submission Criteria

To be successful in this project, the following criteria must be met:

  • Project must be submit on time, by the posted deadline.
    • Late submissions will lose 25% credit per day, with the submission window closing on the 4th day following the deadline.
  • All code must compile cleanly (no warnings or errors)
    • all requested functions must be implemented in the related library
    • all requested functionality must conform to stated requirements (either on this project page or in comment banner in source code files themselves).
  • Executed programs must display in a manner similar to provided output
    • output formatted, where applicable, must match that of project requirements
  • Processing must be correct based on input given and output requested
  • Output, if applicable, must be correct based on values input
  • Code must be nicely and consistently indented (you may use the indent tool)
  • Code must be commented
    • Any “to be implemented” comments MUST be removed
      • these “to be implemented” comments, if still present at evaluation time, will result in points being deducted.
    • Sufficient comments explaining the point of provided logic MUST be present
  • Any and all non-void functions written must have, at most, 1 return statement
    • points will be lost for solutions containing multiple return statements in a function.
  • Track/version the source code in a repository
  • Filling out any submit-time questionnaires
  • Submit a copy of your source code to me using the submit tool (make submit will do this) by the deadline.
haas/summer2015/data/projects/sll3.txt · Last modified: 2015/06/01 21:12 by wedge