Finding Duplicates in a String

Dear Sciaku Learner you are not logged in or not enrolled in this course.

Please Click on login or enroll now button.

If you have any query feel free to chat us!

Happy Coding! Happy Learning!

Lecture 134:- Finding Duplicates in a String

To find duplicates in a string, you can use a hash table or an array to keep track of the occurrence of each character. Here's a C++ program that demonstrates how to find and print the duplicate characters in a given string:

cppCopy code

#include <iostream> #include <unordered_map> #include <string> void findDuplicates(const std::string& str) {    std::unordered_map<char, int> charFrequency;    // Count the frequency of each character in the string    for (char c : str) {        charFrequency[c]++;    }    // Print the duplicate characters    bool foundDuplicates = false;    for (const auto& entry : charFrequency) {        if (entry.second > 1) {            std::cout << entry.first << " appears " << entry.second << " times." << std::endl;            foundDuplicates = true;        }    }    if (!foundDuplicates) {        std::cout << "No duplicate characters found in the string." << std::endl;    } } int main() {    std::string inputString;    std::cout << "Enter a string: ";    std::getline(std::cin, inputString);    findDuplicates(inputString);    return 0; }

In this program, we use an std::unordered_map to store the frequency of each character in the given string. The function findDuplicates calculates the frequency of each character and then prints the characters that appear more than once (i.e., the duplicates). If no duplicates are found, the program indicates that there are no duplicates in the string.

Sample Input:

cCopy code

Enter a string: programming

Sample Output:

bashCopy code

g appears 2 times. r appears 2 times. m appears 2 times.

The program correctly identifies and prints the duplicate characters 'g', 'r', and 'm' in the input string "programming."

Keep in mind that this program is case-sensitive. If you want a case-insensitive search for duplicates, you can convert the entire string to lowercase or uppercase before performing the analysis.

7. Strings

0 Comments

Start the conversation!

Be the first to share your thoughts

Frequently Asked Questions About Sciaku Courses & Services

Quick answers to common questions about our courses, quizzes, and learning platform

Didn't find what you're looking for?

help_center Contact Support