Question: Write a program to create and fill a circular slingly linked list. C++ The user should enter a word or phrase then the code should
Write a program to create and fill a circular slingly linked list. C++
The user should enter a word or phrase then the code should delete every other character in that word or phrase. The code should also output the deleted characters in its own line. The code should also have numbers of rounds too. For Example:
User input: Computer Science
Then the it should be output like this
Round 1: Cmue cec optrSine
Round 2: Cu e optrSine mecc
Round 3: C optrSine mecc uc
Round 4: optrSine mecc ucC So the cmd should look like this or close it it:
It should be a circular linked list operation where the tail(last node) point back to the head.
Select CAUsers Enter a phrase or word: Computer Science Round 1: Cmue cec optrSine Round 2: u e optrSine mecc round 3: optrSine mecc ue Round 4: optrSine mecc ue C Press any key to continue
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
