Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,885 questions

51,811 answers

573 users

How to remove non-duplicate characters from string in C++

2 Answers

0 votes
#include <iostream>
#include <vector>

std::string removeNonDuplicate(const std::string& str) {
    std::vector<char> arr(str.begin(), str.end());
    std::vector<char> duplicateArray;
    
    for (char ch : arr) {
        if (std::count(arr.begin(), arr.end(), ch) > 1) { 
            duplicateArray.push_back(ch);
        }
    }
    
    std::string result(duplicateArray.begin(), duplicateArray.end());
    return result;
}

int main() {
    std::string str = "Bubble Occurrence Mammal c++pro";
    
    std::cout << removeNonDuplicate(str) << std::endl;
}





/*
run:

ubble ccurrece ammal c++r

*/

 



answered Mar 20, 2024 by avibootz
0 votes
#include <iostream>
#include <vector>

std::string removeNonDuplicate(const std::string& str) {
    std::vector<char> arr(str.begin(), str.end());
    std::vector<char> duplicateArray;
    
    for (char ch : arr) {
        if (std::count(arr.begin(), arr.end(), ch) > 1 && 
            std::count(duplicateArray.begin(), duplicateArray.end(), ch) == 0) {
            
            duplicateArray.push_back(ch);
        }
    }
    
    std::string result(duplicateArray.begin(), duplicateArray.end());
    return result;
}

int main() {
    std::string str = "Bubble Occurrence Mammal c++pro";
    
    std::cout << removeNonDuplicate(str) << std::endl;
}





/*
run:

uble cram+

*/

 



answered Mar 20, 2024 by avibootz

Related questions

1 answer 115 views
1 answer 92 views
1 answer 121 views
1 answer 103 views
1 answer 111 views
1 answer 108 views
...