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 243 views
1 answer 269 views
2 answers 233 views
1 answer 155 views
2 answers 223 views
1 answer 104 views
2 answers 248 views
...