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,914 questions

51,847 answers

573 users

How to find non-repeated characters in a string with C++

2 Answers

0 votes
#include <iostream> 

using namespace std; 
  
void printNonRepeatedCharacters(char *s)  { 
    int ascii_count[256]; 
  
    int i; 
    for (i = 0; *(s+i); i++) 
        if(*(s+i)!=' ') 
            ascii_count[*(s+i)]++; 

    int n = i; 
  
    for (i = 0; i < n; i++) 
        if (ascii_count[*(s+i)] == 1) 
            cout << s[i]; 
} 
  
int main() 
{ 
    char s[] = "c++ programming"; 
    
    printNonRepeatedCharacters(s); 
    
    return 0; 
} 


/*
run:

cpoain

*/

 



answered Feb 10, 2019 by avibootz
edited Feb 11, 2019 by avibootz
0 votes
#include <iostream> 

using namespace std; 
  
string getNonRepeatedCharacters(char *s) { 
    int ascii_count[256]; 
  
    int i; 
    for (i = 0; *(s+i); i++) 
        if(*(s+i)!=' ') 
            ascii_count[*(s+i)]++; 
    int n = i; 
  
    string new_s = "";
    for (i = 0; i < n; i++) 
        if (ascii_count[*(s+i)] == 1) 
            new_s += s[i]; 
    
    return new_s;
} 
  
int main() 
{ 
    char s[] = "c++ programming"; 
    
    string new_s = getNonRepeatedCharacters(s); 
    
    cout << new_s; 
    
    return 0; 
} 


/*
run:

cpoain

*/

 



answered Feb 10, 2019 by avibootz
edited Feb 11, 2019 by avibootz

Related questions

2 answers 215 views
1 answer 257 views
2 answers 209 views
1 answer 140 views
2 answers 196 views
1 answer 89 views
2 answers 219 views
...