Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Palindromes Points Points 10 Design 75 Running Program 15 Code Review 100 TOTAL Objectives Use Recursion Use command line arguments Process multiple command line arguments

Palindromes

Points

Points

10

Design

75

Running Program

15

Code Review

100

TOTAL

Objectives

Use Recursion

Use command line arguments

Process multiple command line arguments

Parse information from a string letter by letter

Submission

Design: Submit the PDF to eCampus.

Source Code: Submit the source code (Palindromes.cpp , Functions.h , and Functions.cpp files) to Vocareum

Program

You will write a program that uses a recursive function to determine whether a string is a character-unit palindrome. Moreover, flags can be used to indicate whether to do case sensitive comparisons and/or not ignoring spaces. For example "A nut for a jar of tuna" is a palindrome if spaces are ignored and not otherwise. "Step on no pets" is a palindrome whether spaces are ignored or not, but is not a palindrome if it is case sensitive since the S and s are not the same.

Background

Palindromes are character sequences that read the same forward or backwards (e.g. the strings "mom" or "123 454 321"). Punctuation and spaces are frequently ignored so that phrases like "Dog, as a devil deified, lived as a god." are palindromes. Conversely, even if spaces are not ignored phrases like "Rats live on no evil star" are still palindromes.

Specifications

Design

Create a flowchart or use pseudocode to indicate how the recursion will determine if a given string is a palindrome. Dont forget the rules for creating a good recursive function.

Create a flowchart of use pseudocode to indicate how to get values from the list of command line parameters and determine whether you have a flag and dealing with those as well.

Determine test cases that will never be a palindrome, always be a palindrome, as well as cases where its status as a palindrome depends on the flags.

Command Line Parameters

The program name will be followed by a list of strings. The program will determine whether each string is a palindrome and output the results. Punctuation will always be ignored. An optional flag can precede a term that modifies how the palindrome is determined.

Strings

Each string will be separated by a space on the command line. If you want to include a string that has spaces in it (e.g. "Rats live on no evil star"), then put quotes around it. The quote characters will not be part of the string that is read in.

Flags

Optional for the user

If present, flags always appear after the program name and before any strings are processed and apply to all subsequent strings processed.

Must start with a minus (-) sign followed by one or two flag values that can be capital or lowercase. e.g. -c, -S, -Cs, -Sc, etc.

There are no spaces between starting minus (-) sign and flag(s).

Flags values are case insensitive.

c or C: Indicates that comparisons should be case-sensitive for all input strings. The default condition (i.e. if the flag is NOT included) is to ignore case-sensitivity. So, for example:

palindrome Mom should evaluate as being a palindrome.

palindrome -c Mom should not evaluate as being a palindrome.

s or S: Indicates that comparisons should not ignore spaces for all input strings. The default condition (i.e. if the flag is NOT included) is to ignore spaces. So, for example:

palindrome "A nut for a jar of tuna" should evaluate as being a palindrome.

palindrome -s "A nut for a jar of tuna" should not evaluate as being a palindrome.

Options can appear in different flags, e.g. you can use -Sc or -S -c

Code Expectations

Your program should only get user input from the command line. (i.e. "cin" should not be anywhere in your code).

Required Functions:

Function that prints program usage message in case no input strings were found at command line.

Name: printUsageInfo

Parameter(s): a string representing the name of the executable from the command line.

Return: void.

Recursive function that determines whether a string is a character-unit palindrome.

Name: isPalindrome

Parameter(s): an input string, a boolean flag that considers case-sensitivity when true, and a boolean flag that does not ignore spaces when true.

Return: bool.

All functions should be placed in a separate file following the code organization conventions we covered.

Program Flow

Your program will take arguments from the command-line.

Determine if you have enough arguments. If not, output a usage message and exit program.

If flags are present.

Process and set values to use when processing a palindrome.

Loop through remaining arguments which are all input strings:

Process each by calling isPalindrome function with flag values.

Output results

Program Flow Notes:

Any time you encounter a syntax error, you should print a usage message and exit the program immediately.

Hints

Remember rules for a good recursive function.

Recommended Functions to write: Note: You could combine these into a single function. e.g. "preprocessString"

tolower - convert each letter to lowercase version for case insensitive comparisons.

Parameter(s): a string to be converted to lowercase

Return: a string with all lowercase characters

removePunctuation - Remove all punctuation marks possibly including spaces depending on the flag value.

Parameter(s): a string and a boolean flag indicating whether to also remove spaces

Return: a string with punctuation/spaces removed

Existing functions that might help:

tolower

substr

isalnum

erase (This can be used instead of substr, but is a bit more complicated.)

Development Environment:

It is easier to test a command line program on the command line. So I suggest that you test your program on build.tamu.edu.

These will be graded on vocareum which uses the same compiler as build.tamu.edu. So at a minimum, make sure it compiles and runs on build.tamu.edu before submitting, even if you develop it in your IDE.

Example Output

Note: you will probably only see the ./ if running on build.tamu.edu.

./palindrome Usage: ./palindrome [-c] [-s] string ... -c: case sensitivity turned on -s: ignoring spaces turned off ./palindrome -c Usage: ./palindrome [-c] [-s] string ... -c: case sensitivity turned on -s: ignoring spaces turned off ./palindrome Kayak "Kayak" is a palindrome ./palindrome -c Kayak "Kayak" is not a palindrome. ./palindrome -C Kayak "Kayak" is not a palindrome. ./palindrome -c kayak "kayak" is a palindrome. ./palindrome "Test Set" "Test Set" is a palindrome. ./palindrome -sc "Test Set" "Test Set" is not a palindrome. ./palindrome -s -c "Test Set" "Test Set" is not a palindrome. ./palindrome -s -s "Test Set" "Test Set" is not a palindrome. ./palindrome -scs "Test Set" "Test Set" is not a palindrome. ./palindrome Kayak madam "Test Set" "Evil Olive" "test set" "loop pool" "Kayak" is a palindrome. "madam" is a palindrome. "Test Set" is a palindrome. "Evil Olive" is a palindrome. "test set" is a palindrome. "loop pool" is a palindrome. ./palindrome -s Kayak madam "Test Set" "Evil Olive" "test set" "loop pool" "Kayak" is a palindrome. "madam" is a palindrome. "Test Set" is not a palindrome. "Evil Olive" is not a palindrome. "test set" is not a palindrome. "loop pool" is a palindrome. ./palindrome -c Kayak madam "Test Set" "Evil Olive" "test set" "loop pool" "Kayak" is not a palindrome. "madam" is a palindrome. "Test Set" is not a palindrome. "Evil Olive" is not a palindrome. "test set" is a palindrome. "loop pool" is a palindrome. ./palindrome -c -s Kayak madam "Test Set" "Evil Olive" "test set" "loop pool" "Kayak" is not a palindrome. "madam" is a palindrome. "Test Set" is not a palindrome. "Evil Olive" is not a palindrome. "test set" is not a palindrome. "loop pool" is a palindrome.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning Microsoft SQL Server 2012 Programming

Authors: Paul Atkinson, Robert Vieira

1st Edition

1118102282, 9781118102282

More Books

Students also viewed these Databases questions

Question

Outline three of Vivess contributions to psychological thought.

Answered: 1 week ago