CSCI 261 - Programming Concepts - Maynooth 2022

Lab 3B - Linked List Operations

This lab is due by Friday, July 08, 2022, 11:59 PM.
As with all labs you may, and are encouraged, to pair program a solution to this lab. If you choose to pair program a solution, be sure that you individually understand how to generate the correct solution.


Instructions


A skeletal test suite has been provided for you in linked_list_tests.zip. This test suite has the function stubs created so the code will compile, but when attempting to run it will immediately fail due to null pointer errors.

Your job: implement each function such that all tests pass.

When your program prints PASSED for a given unit test instead of FAILED, then you know that your function implementation for that test is complete.


Hints



Functional Requirements



Lab Submission


Submit your linked_list_functions.cpp file(s).

You will submit your solution to this lab with the rest of Set3. Detailed instructions for doing this are posted in Assignment 3.


This lab is due by Friday, July 08, 2022, 11:59 PM.
As with all labs you may, and are encouraged, to pair program a solution to this lab. If you choose to pair program a solution, be sure that you individually understand how to generate the correct solution.