Prepare a c program that will run in microsoft visual


Program: Prepare a C++ program that will run in Microsoft Visual Studio 2012

Implement a class called SinglyLinkedList. 

In the main function, instantiate the SinglyLinkedList class. Your program should provide a user loop and a menu so that the user can access all the operators provided by the SinglyLinkedList class.

You should implement the subsequent operators, and any others that you may deem best start with

#include "stdafx.h"

#include

using namespace std;

1)    DestroyList

2)    InitializeList

3)    GetFirst

4)    InsertFirst, InsertLast, Insert

5)    DeleteFirst, DeleteLast, Delete

6)    IsEmpty

7)    Length

8)    Print, ReversePrint

You need to implement a class name SinglyLinkedList and implement its functions.

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: Prepare a c program that will run in microsoft visual
Reference No:- TGS0949881

Expected delivery within 24 Hours