Less'Implement an extractLessThan operation on a singly-linked list with no tail pointer. Your code SHOULD NOT delete memory, only return a new LinkedList with the value less than parameter value. Your code must not call other LinkedList functions. Order of the extracted nodes does not matter. 8. struct LinkNode { Data • data; // note that you can compare by calling data->compareTo(other) LinkNode • next; }; class LinkedList { LinkNode • head; • Returns a nev LinkedList that contains all of the LinkNodes from this • LinkedList that have node->data->compareTo (value) < 0. • LinkedList •x- ... // x contains [5, 8, 1, 3] • Data • value - new IntegerData (4); • LinkedList • y- x->extractLessThan(value); • // x nov contains [5, 8] and y nov contains (3, 1 // You have access to head and to this LinkedList extractLessThan (Data • value) { LinkedList nevList - new LinkedList(); LinkNode • current - head; LinkNode • previous - NULL;

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
Less'Implement an extractLessThan operation on a singly-linked list with no
tail pointer. Your code SHOULD NOT delete memory, only return a new LinkedList
with the value less than parameter value. Your code must not call other LinkedList
functions. Order of the extracted nodes does not matter.
8.
struct LinkNode {
Data • data; // note that you can compare by calling data->compareTo(other)
LinkNode • next;
};
class LinkedList {
LinkNode • head;
• Returns a nev LinkedList that contains all of the LinkNodes from this
• LinkedList that have node->data->compareTo (value) < 0.
• LinkedList •x- ... // x contains [5, 8, 1, 3]
• Data • value - new IntegerData (4);
• LinkedList • y- x->extractLessThan(value);
• // x nov contains [5, 8] and y nov contains (3, 1
// You have access to head and to this
LinkedList extractLessThan (Data • value) {
LinkedList nevList - new LinkedList();
LinkNode • current - head;
LinkNode • previous
- NULL;
Transcribed Image Text:Less'Implement an extractLessThan operation on a singly-linked list with no tail pointer. Your code SHOULD NOT delete memory, only return a new LinkedList with the value less than parameter value. Your code must not call other LinkedList functions. Order of the extracted nodes does not matter. 8. struct LinkNode { Data • data; // note that you can compare by calling data->compareTo(other) LinkNode • next; }; class LinkedList { LinkNode • head; • Returns a nev LinkedList that contains all of the LinkNodes from this • LinkedList that have node->data->compareTo (value) < 0. • LinkedList •x- ... // x contains [5, 8, 1, 3] • Data • value - new IntegerData (4); • LinkedList • y- x->extractLessThan(value); • // x nov contains [5, 8] and y nov contains (3, 1 // You have access to head and to this LinkedList extractLessThan (Data • value) { LinkedList nevList - new LinkedList(); LinkNode • current - head; LinkNode • previous - NULL;
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
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