create a new, empty list
•append a value to the end of the list
•insert a value within the list
•delete/remove a value (remove it from the list)
•display the values in the list
•searcha given value in the list
•search value in a given position
•delete/destroy the list
Implement all List operations usingarrays in C++
Use multi-file development for this problem (.h, .cpp files).The header file should contain the class declaration, the classfile should contain definition of class member functions, andfinally, the driver file should contain the main().
create a new, empty list •append a value to the end of the list •insert a value within the list •delete/remove a value (
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am