CS 10B Programming Concepts and Methodologies 1

Project 17.1

No initial file comment is required for this assignment. Function comments are still required.

Implement the following functions. Each function deals with null terminated C-Style strings. You can assume that any char array passed into the functions will contain null terminated data. Place all of the functions in a single file and then (in the same file) create a main() function that tests the functions thoroughly.

Additional Requirements and Hints:

  1. You may not use any variables of type string. This means that you should not #include <string>. Also, you may not use any c-string functions other than strlen(). If you use any other c-string functions, you will not get credit. Note, however, that functions such as toupper(), tolower(), isalpha(), isspace(), and swap() are NOT c-string functions, so you can use them. Also note that this prohibition is only for the functions that you are assigned to write. You can use whatever you want in your main() function that tests the assigned functions.

  2. In most cases it will be better to use a while loop that keeps going until it hits a '\0', rather than using a for loop that uses strlen() as the limit, because calling strlen() requires a traversal of the entire array. You could lose a point or two if you traverse the array unnecessarily. (In case this isn't clear, I've included a detailed explanation of this at the very bottom of the assignment.)

  3. None of these function specifications say anything at all about input or output. None of these functions should have any input or output statements in them. The output should be done in the calling function, which for testing purposes will probably be main(). The only requirement about main() is that it sufficiently test your functions. So, you can get user input in main() to use as arguments in the function calls, or you can use hard-coded values -- up to you, as long as the functions are tested thoroughly.

  4. Here's a hint about how to work with c-strings in main(). There are several different ways that you could assign values to c-string variables, but I think the easiest is just hardcoding a lot of examples. For example:

    char str1[] = "Hello World";
    char str2[] = "C++ is fun!";
    

    Whatever you do, don't try to create and initialize a c-string on one line using pointer notation, like this:

    char* str1 = "Hello world";
    

    This is dangerous (and officially deprecated in the C++ standard) because you haven't allocated memory for str1 to point at.

  5. Since it is just being used for testing, In this case it is fine to have a very long main() function.

  6. You can do anything you want to test the functions, as long as the end result is that you demonstrate that they work correctly.

Required Functions:

  1. This function finds the last index where the target char can be found in the string. it returns -1 if the target char does not appear in the string. The function should be case sensitive (so 'b' is not a match for 'B').

    int lastIndexOf(const char* inString, char target)
    
  2. This function alters any string that is passed in. It should reverse the string. If "flower" gets passed in it should be reversed in place to "rewolf". For efficiency, this must be done "in place", i.e., without creating a second array.

    void reverse(char* inString)
    
  3. This function finds all instances of the char 'target' in the string and replace them with 'replacementChar'. It returns the number of replacements that it makes. If the target char does not appear in the string it should return 0.

    int replace(char* inString, char target, char replacementChar)
    
  4. This function returns true if the argument string is a palindrome. It returns false if it is not. A palindrome is a string that is spelled the same as its reverse. For example "abba" is a palindrome. So are "hannah" and "abc cba" and "b" and "n$aa$n" and "" (empty string).

    Do not get confused by white space characters, punctuation, or digits. They should not get any special treatment. "abc ba" is not a palindrome. It is not identical to its reverse. (Note, this may be different from other definitions of palindrome. The reason for choosing this definition is actually to make the function easier: you can just write the code without ever thinking about whether the characters are letters or not. If you had to skip over spaces and other non-letters, the code would be more complex.)

    Your function should not be case sensitive. For example, "aBbA" is a palindrome.

    You must solve this problem "in place", i.e., without creating a second array. As a result, calling your reverse() function from this function isn't going to help.

    bool isPalindrome(const char* inString)
    
  5. This function converts the c-string parameter to all uppercase.

    void toupper(char* inString)
    
  6. This function returns the number of letters in the c-string.

    int numLetters(const char* inString)
    

About strlen() and traversing the array unnecessarily:

The statement

for(int i = 0; i < strlen(string); i++)

is super, super inefficient. Let's say the string is 100 characters long. This for loop, then, will iterate 100 times. but each time it iterates, it calls strlen() again. Calling strlen() requires another 100 operations (it goes through the array until it finds the null character). So, even if the for loop is empty, that's 100 X 100 = 10,000 operations, when it could easily have been done in 100 operations.

However, I'm talking about a more subtle problem. Let's say you are writing a function that goes through and changes each character in the array to a dollar sign ($). You can avoid the super, super inefficient loop by calling strlen() ahead of time, like this:

int stringLength = strlen(string);
for(int i = 0; i < stringLength; i++){
    string[i] = '$';
}

However, the above solution still traverses the array unnecessarily. It traverses the array once to find the length of the string, and then it traverses the array again to actually perform the task. A much better solution is to avoid calling strlen() at all (and thus avoid traversing the array unnecessarily):

int i = 0;
while (string[i] != '\0') {
    string[i] = '$';
    i++;
}