Question: why is no one anawering my question? please help. I need help understanding how to code this in Java Part one of this project requires
I need help understanding how to code this in Java Part one of this project requires you to implement the complete class template for three classes: Student, Node, and DList. Each class is discussed below. Your code in main should only instantiate an object of each type. No other code should appear in main. Class Templates: Student: this class consists of three member variables - the name of the student, the sum of the student's grades, and the number of grades. The methods must include a default constructor and accessors and mutators for each member variable. Node: this class contains three member variables - a previous node reference, next node reference and a Student reference as the data portion. All appropriate methods are required as discussed in class. DList: this class will contain two member variables - a head and tail reference to Node. You must provide the following methods: default constructor, addHead, addTail, find Student, removeHead, remove Tail, printList. The method find Student will search for the student represented by the name passed in as the argument and if found, return the student object; otherwise, it should return null
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
