[Solved] COEN79-Lab 5 String Class

$25

File Name: COEN79-Lab_5_String_Class.zip
File Size: 235.5 KB

SKU: [Solved] COEN79-Lab 5 String Class Category: Tag:
5/5 - (1 vote)

You will complete the implementation for a version of the Standard Librarys string class. Please download and read through this header file: mystring.h

You are to write the implementation for the above header file in a file named mystring.cpp. Please note that the name of the actual class that you are writing is string, not mystring. For this reason, the use of namespaces is particularly important to this lab, as your class will have the same name as that of the Standard Librarys string class.

You are allowed to use functions from the library <cstring> to assist you in writing your functions for things like copying between strings or appending strings to one another. You are to make sure, however, that you use safe versions of these strings. For example, you should use strncpy and strncat, not their less secure alternatives of strcpy and strcat. Finally, you may NOT use the strdup function.

Some of the important functions to be implemented are:

  • A new constructor that has one parameter (a character). The constructor initializes the string to have just this one character.
  • An insertion function that allows you to insert a string at a given position in another string.
  • A deletion function that allows you to delete a portion of a string.
  • A replacement function that allows you to replace a single character in a string with a new character.
  • A replacement function that allows you to replace a portion of a string with another string.
  • A search function that searches a string for the first occurrence of a specified character.
  • A search function that counts the number of occurrences of a specified character in a

string.

  • A more complex search function that searches through a string for an occurrence of some smaller string.

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[Solved] COEN79-Lab 5 String Class
$25