C++ Program  This assignment consists of 2 parts. 1. Append Process: Create a Linked List that will store integers. Using the provided getData() method (See below),  append 20 numbers to the Linked List. After loaded, display the data. Start with the Head of the list. Prompt for user to proceed. 2. Insert Process: Delete the contents of the Linked List in part 1. Using the provided getData() method, insert 20 numbers into the list and place them in the list in numerical order (1..X). Do not allow duplicates to be in the list. Hint: Do not allow a duplicate to count as a member of the 20. After loaded, display the data per line in order, starting with the Head of the list. Display the content with a leading increasing number 1- 20. i.e. 11 13 14 20 The result should be a naturally sorted. Do not use the STL list container for this exercise. Use the features described in section  - Linked List Operations.  Using a Class to manage the linked list as shown in section is required.   // Requires #include int getData() {     return (rand() % 100); } Deliverable is a working CPP program (including header file) and pseudo-code for task 2b

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 18SA
icon
Related questions
Question

   C++ Program 

This assignment consists of 2 parts.

1. Append Process:

  1. Create a Linked List that will store integers.
  2. Using the provided getData() method (See below),  append 20 numbers to the Linked List.
  3. After loaded, display the data. Start with the Head of the list.
  4. Prompt for user to proceed.

2. Insert Process:

  1. Delete the contents of the Linked List in part 1.
  2. Using the provided getData() method, insert 20 numbers into the list and place them in the list in numerical order (1..X). Do not allow duplicates to be in the list. Hint: Do not allow a duplicate to count as a member of the 20.
  3. After loaded, display the data per line in order, starting with the Head of the list.
    1. Display the content with a leading increasing number 1- 20. i.e.
      1. 11
      2. 13
      3. 14
      4. 20
    2. The result should be a naturally sorted.

Do not use the STL list container for this exercise. Use the features described in section  - Linked List Operations.  Using a Class to manage the linked list as shown in section is required.

 

// Requires #include <iostream>
int getData() {
    return (rand() % 100);
}

Deliverable is a working CPP program (including header file) and pseudo-code for task 2b.

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Linked List Representation
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
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning