Implement a linked list of integers as a class LinkedList. Build the following methods: ✓ print that prints the content of the linked list; ✓ addFirst that adds a new node to the beginning (the head) of the linked list; ✓ addLast that adds a new node to the end (the tail) of the linked list; ✓ indexOf that finds a specific node by its value, and returns node’s index (node’s position from the left in the linked list); if the value is not present in the linked list, it returns −1; ✓ deleteFirst that deletes the first node in the linked list; ✓ deleteLast that deletes the last node in the linked list. Test your class creating a list in the main and 1) adding one by one nodes 2, 4, 8 to the tail; 2) adding nodes -2, -8 to the head; 3) adding a node 9 to the tail; 4) printing the list; 5) printing indexOf(4); 6) printing contains(9); 7) deleting one by one all the nodes in the list – either from the tail or from the head – and printing the result after each deletion. THEN AFTER THIS Add a new method IN THE FORM OF O(n) reverse to the class LinkedList created in the problem 1. This method must reverse the order of the nodes in the list. For example, having applied reverse to the list [2 → 4 → 8 → 9 → 8], we will change it to [8 → 9 → 8 → 4 → 2].  PLEASE WRITE CODE IN JAVA

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Implement a linked list of integers as a
class LinkedList. Build the following methods:
✓ print that prints the content of the linked list;
✓ addFirst that adds a new node to the beginning (the head) of the
linked list;
✓ addLast that adds a new node to the end (the tail) of the linked list;
✓ indexOf that finds a specific node by its value, and returns node’s
index (node’s position from the left in the linked list); if the value
is not present in the linked list, it returns −1;
✓ deleteFirst that deletes the first node in the linked list;
✓ deleteLast that deletes the last node in the linked list.
Test your class creating a list in the main and
1) adding one by one nodes 2, 4, 8 to the tail;
2) adding nodes -2, -8 to the head;
3) adding a node 9 to the tail;
4) printing the list;
5) printing indexOf(4);
6) printing contains(9);
7) deleting one by one all the nodes in the list – either from the tail or
from the head – and printing the result after each deletion.

THEN AFTER THIS

Add a new method IN THE FORM OF O(n) reverse to the class LinkedList created in the problem
1. This method must reverse the order of the nodes in the list. For
example, having applied reverse to the list [2 → 4 → 8 → 9 → 8], we
will change it to [8 → 9 → 8 → 4 → 2]. 

PLEASE WRITE CODE IN JAVA

Expert Solution
steps

Step by step

Solved in 8 steps with 5 images

Blurred answer
Knowledge Booster
Threads in linked list
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education