1. Create a program that uses a LINKED LIST to do the following:   a. Using the attached file, input.txt, read the integers and dynamically process alinked list. The file contains action code and integer pairs. Process these actions as they are read. The action code is first: I = Insert a new node with the corresponding value. Insert in ascending(sorted) order D = Delete the node with the corresponding value S = Search the current list for the corresponding value   b. You may use any examples reviewed in class that explain how to process a linked list. The book contains examples and code to insert into, delete from and search a linked list   c. If the action is 'S' and the value does NOT exist in the linked list, display an appropriate message. If the value DOES exist in the linked list, display an appropriate message.   d. If the action is 'D' and the value does NOT exist in the linked list, display an appropriate message   e. After all input is processed, display the contents of the resulting linked list   f. Read until end of file. DO NOT code the loop for the number of values in the table   g. Do not use the linked list ADT in the book (although you may use the code in the ADT methods as examples. Design and implement the solution however you wish(all in main, functions, etc.)   The program may be named any name of our choice, must have a .cpp extention; variables may be any nameof your choice.   please show the output of the program too Thank you

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
icon
Concept explainers
Question
1. Create a program that uses a LINKED LIST to do the following:
 
a. Using the attached file, input.txt, read the integers and dynamically process alinked list.
The file contains action code and integer pairs. Process these actions as they are read.
The action code is first:
I = Insert a new node with the corresponding value. Insert in ascending(sorted) order
D = Delete the node with the corresponding value
S = Search the current list for the corresponding value
 
b. You may use any examples reviewed in class that explain how to process a linked list.
The book contains examples and code to insert into, delete from and search a linked
list
 
c. If the action is 'S' and the value does NOT exist in the linked list, display an appropriate message.
If the value DOES exist in the linked list, display an appropriate message.
 
d. If the action is 'D' and the value does NOT exist in the linked list, display an appropriate message
 
e. After all input is processed, display the contents of the resulting linked list
 
f. Read until end of file. DO NOT code the loop for the number of values in the table
 
g. Do not use the linked list ADT in the book (although you may use the code in the
ADT methods as examples. Design and implement the solution however you wish(all in main, functions, etc.)
 
The program may be named any name of our choice, must have a .cpp extention; variables may be any nameof your choice.
 
please show the output of the program too
Thank you
I 10 I 20 I 15 I 35 D 10 S 20D 19 I 22 I 25 D 15 S 99 I 34 I 45 I 20
Transcribed Image Text:I 10 I 20 I 15 I 35 D 10 S 20D 19 I 22 I 25 D 15 S 99 I 34 I 45 I 20
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 7 images

Blurred answer
Knowledge Booster
Types of 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.
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