Create a generic class called GenLinkedList. GenLinkedList…solution

$14.99

Original Work ?

Download Details:

  • Name: Project_1.zip
  • Type: zip
  • Size: 8.10 KB

Category: You will Instantly receive a download link upon Payment||Click Original Work Button for Custom work

Description

5/5 - (1 vote)

Description:

Create a generic class called GenLinkedList. GenLinkedList will use nodes
that store a value of the generic type to store its contents.

It should have the following methods. The methods should
all operate on the object making the call (none are static).

Perform checking of the parameters and throw exceptions where
appropriate.

The linked list should be singly-linked.

It should not use sentinel nodes (empty header and tail nodes).

You should strive for an efficient implementation of each method.