Assignment: Linked List of Students You have been tasked with implementing a program in Java that uses a linked list to store and manage a list of students in a class. Each student should have a name and a grade. Your program should include the following classes: Student: Represents a student in the class. Each student should have a name and a grade. Node: Represents a node in the linked list. Each node should store a reference to a student and a reference to the next node in the list. LinkedList: Represents the linked list itself. Each linked list should have a reference to the first node in the list. Your task is to implement these classes using a linked list and demonstrate their functionality by creating a console-based interface for users to interact with the system. Your program should allow users to: Add a new student to the class at the end of the list. View information about a student, including their name and grade. Modify a student's information (e.g. name, grade). Delete a student from the list. View a list of all students in the class. Your program should be well-designed and demonstrate good use of linked lists and object-oriented principles.
Don't copy from anywhere... please fast... typed answer
Assignment: Linked List of Students
You have been tasked with implementing a program in Java that uses a linked list to store and manage a list of students in a class. Each student should have a name and a grade.
Your program should include the following classes:
Student: Represents a student in the class. Each student should have a name and a grade.
Node: Represents a node in the linked list. Each node should store a reference to a student and a reference to the next node in the list.
LinkedList: Represents the linked list itself. Each linked list should have a reference to the first node in the list.
Your task is to implement these classes using a linked list and demonstrate their functionality by creating a console-based interface for users to interact with the system.
Your program should allow users to:
Add a new student to the class at the end of the list.
View information about a student, including their name and grade.
Modify a student's information (e.g. name, grade).
Delete a student from the list.
View a list of all students in the class.
Your program should be well-designed and demonstrate good use of linked lists and object-oriented principles.

Step by step
Solved in 3 steps with 2 images









