w3resource

C++ Vector Exercises: First string contains all letters from second string

C++ Vector: Exercise-5 with Solution

Write a C++ program to verify that all of the letters in the second string appear in the first string as well. Return true otherwise false.

Sample Data:
({"Python", "Py"}) -> 1
({"CPP", "C++"}) ->.0

Sample Solution-1:

C++ Code:

#include <iostream>  // Including the Input/Output Stream Library
#include <vector>    // Including the Vector Library for using vectors

using namespace std; // Using the Standard Namespace

// Function to check if all characters in the second string are present in the first string
string test(vector<string> strs) {
    for (auto ch : strs.at(1)) { // Iterating through each character in the second string
        // Checking if the uppercase or lowercase form of the character exists in the first string
        if (strs.at(0).find(toupper(ch)) == string::npos && strs.at(0).find(tolower(ch)) == string::npos)
            return "false"; // If a character is not found in the first string, return "false"
    }
    return "true"; // If all characters are found in the first string, return "true"
}

// Main function
int main() {
    vector<string> strs = {"Python", "Py"}; // Initializing a vector of strings

    cout << "Original String elements: ";
    for (string c : strs)
        cout << c << " "; // Printing the original elements of the vector

    cout << "\nCheck - First string contains all letters from second string: ";
    string result = test(strs); // Calling the test function to check character presence in the strings
    cout << result << " "; // Printing the result ("true" or "false")
}

Sample Output:

Original String elements: Python Py 
Check - First string contains all letters from second string: true

Flowchart:

Flowchart: First string contains all letters from second string.

Sample Solution-2:

C++ Code:

#include <iostream>  // Including the Input/Output Stream Library
#include <vector>    // Including the Vector Library for using vectors

using namespace std; // Using the Standard Namespace

// Function to check if all characters in the second string are present in the first string
string test(vector<string> strs) {
    // Convert all characters in the first string to uppercase
    for (char &ch : strs.at(0)) 
        ch = toupper(ch);

    // Convert all characters in the second string to uppercase and check if each character exists in the first string
    for (char &ch : strs.at(1)) {
        ch = toupper(ch); // Convert the character to uppercase
        if (strs.at(0).find(ch) == std::string::npos) // Check if the character is not found in the first string
            return "false"; // If a character is not found in the first string, return "false"
    }
    return "true"; // If all characters are found in the first string, return "true"
}

// Main function
int main() {
    // vector<string> strs = {"Python", "Py"};
    vector<string> strs = {"CPP", "C++"}; // Initializing a vector of strings

    cout << "Original String elements: ";
    for (string c : strs)
        cout << c << " "; // Printing the original elements of the vector

    cout << "\nCheck - First string contains all letters from second string: ";
    string result = test(strs); // Calling the test function to check character presence in the strings
    cout << result << " "; // Printing the result ("true" or "false")
}

Sample Output:

Original String elements: CPP C++ 
Check - First string contains all letters from second string: false  

Flowchart:

Flowchart: First string contains all letters from second string.

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous C++ Exercise: Capitalize the first character of each vector element.
Next C++ Exercise: Find strings that contain a number(s) from a vector.

What is the difficulty level of this exercise?



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/cpp-exercises/vector/cpp-vector-exercise-5.php