Question
Specify and implement an ADT character string by using a linked chain of characters. Include typical operations such as nding its length, appending one string
Specify and implement an ADT character string by using a linked chain of characters. Include typical operations such as nding its length, appending one string to another, nding the index of the leftmost occurrence of a character in a string, and testing whether one string is a substring of another.
Do not #include
You should be able to use subscripting [ ] to go to a specific position of the string.
Note operator + can be a friend function but operator [ ] must be a member function not a friend function. Remember that operator + if a member function will have only one parameter (the right hand side of the + ) Operator [ ] will return an index which points to the location of the subscript.
This is c++ language problem, Can someone help me on this problem?
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
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