Question: Fill in the code to the right in c++ and follow all constraints/examples/directions. I #include 3 string encrypt (string message) Problem Statement // you write

 Fill in the code to the right in c++ and follow

Fill in the code to the right in c++ and follow all constraints/examples/directions.

I #include 3 string encrypt (string message) Problem Statement // you write code here John is obsessed with security. He is writing a letter to his friend Brus and he wants nobody else to be able to read it. He uses a simple substitution cipher to encode his message. Each letter in the message is replaced with its corresponding letter in a substitution alphabet. A substitution alphabet is a permutation of all the letters in the original alphabet. In this problem, the alphabet will consist of only lowercase letters (a'-z). For example, if John's message is "hello" and his cipher maps 'h'to 'd', 'e' to T, T to 'p' and 'o' to 'y', the encoded message will be "dippy". If the cipher maps 'h' to 'a', 'e' to b, T to c' and 'o' to 'd', then the encoded message will be "abccd". Given the original message, determine the cipher that will produce the encoded string that comes earliest alphabetically. Return this encoded string. In the example above, the second cipher produces the alphabetically earliest encoded string ("abccd") Notes and Constraints .If A and B are two strings of the same length, then A comes ealier alphabetically than B if it contains a smaller character at the first position where the strings differ message will contain between 1 and 50 characters, inclusive message will contain only lowrcaseletters (a-z') Examples 1. hello Returns: "abccd The example from the statement. 2. abcd" Returns: "abcd Here the message is encoded to itself topcoder" Returns: "abcdbefg 4. encryption" Returns: "abcdefghib

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!