-
Write a C++ program that reads a text (string) and savesit character by character in a linked list.
You must include the following functions:
A Function Print, that traverses the linked list and prints thetext to the standard output.
A function Reverse, that traverses the linked list and printsthe reverse text to the standard output, without changing thelinked list. ( Pass the linked list by value, you have the freedomto create a doubly linked list that is a copy of the original listin your program before you call the function)
A function Find, that traverses the linked list and counts theoccurrences of a given
OROR