Im implementing list using linked list and writing a test ca
I\'m implementing list using linked list and writing a test case for it below.
The error message says \"LListCNU is a raw type. References to generic type LListCNU<E>
should be parameterized\".
Solution
you are not able to insert a input because
your object creation method is incorrect
you have used the wrong class name
The class name should be LLISTCNUTEST list =new LLISTCNUTEST();
create a constructor whose name is same as that of a class.so here it is LLISTCNUTEST()
do all assignments inside a constructor
remove method doessizzework().That finction is not serving any purpose in the program whichn you have written.
do these modifications in the code which you have shown in the question.
