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

51,843 answers

573 users

How to find non-repeated characters in a string with Java

2 Answers

0 votes
public class MyClass {
    static void printNonRepeatedCharacters(String s) { 
        int[] count = new int[256]; 
 
        int i; 
        for (i = 0; i < s.length(); i++) 
            if (s.charAt(i) != ' ') 
                count[(int)s.charAt(i)]++; 
         
        int len = i; 
 
        for (i = 0; i < len; i++) 
            if (count[(int)s.charAt(i)] == 1) 
                System.out.print(s.charAt(i)); 
    } 
    public static void main(String args[]) {
        String s = "java php c"; 
         
        printNonRepeatedCharacters(s); 
    }
}
 
 
/*
run:
 
jvhc
 
*/

 



answered Feb 9, 2019 by avibootz
edited Feb 9, 2019 by avibootz
0 votes
public class MyClass {
    static String getNonRepeatedCharacters(String s) { 
        int[] count = new int[256]; 
 
        int i; 
        for (i = 0; i < s.length(); i++) 
            if (s.charAt(i) != ' ') 
                count[(int)s.charAt(i)]++; 
         
        int len = i; 
 
        String nrc = "";
        for (i = 0; i < len; i++) 
            if (count[(int)s.charAt(i)] == 1) 
               nrc += s.charAt(i);
                
        return nrc;
    } 
    public static void main(String args[]) {
        String s = "java php c"; 
         
        String nrc = getNonRepeatedCharacters(s); 
        System.out.print(nrc); 
    }
}
 
 
/*
run:
 
jvhc
 
*/

 



answered Feb 9, 2019 by avibootz
edited Feb 9, 2019 by avibootz

Related questions

1 answer 256 views
2 answers 221 views
2 answers 209 views
1 answer 139 views
1 answer 83 views
2 answers 133 views
...