Hello, Could you please complete this code for me? Thank you Chegg customer // // DO NOT EDIT THIS FILE // WRITE YOUR CODE IN
Hello,
Could you please complete this code for me?
Thank you
Chegg customer
//
// DO NOT EDIT THIS FILE
// WRITE YOUR CODE IN IntegerLinkedList.h and IntegerLinkedList.cpp
//
#include
#include
#include "IntegerLinkedList.h"
using namespace std;
int main() {
IntegerLinkedList mylist;
cout << "Enter number of integers : ";
int n, value;
cin >> n;
cout << "Enter " << n << " integers" << endl;
for (int i = 0; i < n; i++) {
cin >> value;
mylist.addFront(value);
}
cout << "print: " << endl;
mylist.print();
cout << endl;
mylist.deleteSmallest();
cout << "print after deleteSmallest: " << mylist.print() << endl;
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started