Overview Topies Doubly Linked List Description For this assignment, you will code a basic job leads management system to keep track of your job search opportunities, using a doubly linked list. Your...


Overview<br>Topies<br>Doubly Linked List<br>Description<br>For this assignment, you will code a basic job leads management system to keep track of your<br>job search opportunities, using a doubly linked list. Your implementation should include the<br>following:<br>1. Create a doubly linked link<br>2. Add new job leads to the front of the list<br>3. Add new job leads to the tail of the list<br>4. Remove job leads from the list<br>5. Print the list from head to tail<br>JAVA<br>6. Print the list from tail to head<br>Coding Specifications<br>Implement the following classes:<br>1) JobLead Class<br>a) Must have the following attributes:<br>- company name: string, private, company full name<br>- contact name: string, private, contact person full name<br>contact phone: string, private, contact person phone number<br>job title: string, private, job title<br>job description: string, private, job description<br>b) Must have an overloaded constructor which takes in the five (5) attributes and sets<br>the object variables<br>c) Must have getter/setter methods for the five (5) attributes<br>d) Must override the tostring method to return a string which includes a label and<br>value for all five (5) attributes<br>2) Node Class<br>a) Must have the following attributes:<br>lead: JobLead, public, a job lead object<br>

Extracted text: Overview Topies Doubly Linked List Description For this assignment, you will code a basic job leads management system to keep track of your job search opportunities, using a doubly linked list. Your implementation should include the following: 1. Create a doubly linked link 2. Add new job leads to the front of the list 3. Add new job leads to the tail of the list 4. Remove job leads from the list 5. Print the list from head to tail JAVA 6. Print the list from tail to head Coding Specifications Implement the following classes: 1) JobLead Class a) Must have the following attributes: - company name: string, private, company full name - contact name: string, private, contact person full name contact phone: string, private, contact person phone number job title: string, private, job title job description: string, private, job description b) Must have an overloaded constructor which takes in the five (5) attributes and sets the object variables c) Must have getter/setter methods for the five (5) attributes d) Must override the tostring method to return a string which includes a label and value for all five (5) attributes 2) Node Class a) Must have the following attributes: lead: JobLead, public, a job lead object

Jun 10, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here