Thursday, May 19, 2022

Find The First Repeated Character in a String Java Program

In this post well see a Java program to find the first repeated character in a String. This program is reverse of another Java program where you are asked to find the first non-repeated character in a String.

As example if given string is “Java” then first repeated character is ‘a'.
If given String is “net” then there is no repeated character.

Solution for finding the first repeated character in a String

There are many ways to write this program, option you chose also depends upon whether you can use any existing API or not.

  1. First solution is to use outer and inner loop and traverse String starting from first character if that character is found again return that character otherwise move to the next character. This is a O(n2) solution.
  2. If you are permitted to use any existing API then you can use HashSet to add elements of the array. Since HashSet stores only unique elements so false is returned for the repeated character. This solution needs extra space as apart from array a HashSet is also used.

Find first repeated character in a String using loops

In this solution outer and inner for loops are used and String is searched character by character to find repeated char.

public class FirstRepeated {
  public static void main(String[] args) {
    String str = "Java programming";
    int index = findFirstRepeated(str); 
    if(index != -1){
      System.out.println("First Repeated character " + str.charAt(index) + " found at index " + index);
    }else{
      System.out.println("No repeated character found");
    }
  }
    
  private static int findFirstRepeated(String str){
    for(int i = 0; i < str.length(); i++){
      char c = str.charAt(i);
      for(int j = i+1; j < str.length(); j++){
        if(c == str.charAt(j))
          return j;
      }
    }
    return -1;
  }
}

Output

First Repeated character a found at index 3

Find first repeated character in a String using HashSet

In this solution for finding the first repeated character in a String each character of the String is added to the HashSet. In HashSet if duplicate element is added it returns false which gives us the repeated character in the String.

public class FirstRepeated {
  public static void main(String[] args) {
    String str = "hashset";
    int index = findFirstRepeated(str); 
    if(index != -1){
      System.out.println("First Repeated character " + str.charAt(index) + " found at index " + index);
    }else{
      System.out.println("No repeated character found");
    }
  }

  private static int findFirstRepeated(String str){
    Set<Character> charSet = new HashSet<>();
    for(int i = 0; i < str.length(); i++){
      char c = str.charAt(i);
      if(!charSet.add(c)){
        return i;
      }
    }
    return -1;
  }
}

Output

First Repeated character h found at index 3

That's all for this topic Find The First Repeated Character in a String Java Program. If you have any doubt or any suggestions to make please drop a comment. Thanks!

>>>Return to Java Programs Page


Related Topics

  1. Convert Char to String And String to Char in Java
  2. Find Duplicate Characters in a String With Repetition Count Java Program
  3. Remove Duplicate Elements From an Array in Java
  4. Checking Number Prime or Not Java Program
  5. Converting String to Enum Type in Java

You may also like-

  1. Binary Search Program in Java
  2. How to Reverse a Doubly Linked List in Java
  3. How to Sort Elements in Different Order in Java TreeSet
  4. How to Read Properties File in Java
  5. AutoBoxing And UnBoxing in Java
  6. Why no Multiple Inheritance in Java
  7. Java Multithreading Interview Questions And Answers
  8. Spring MVC Form Example With Bean Validation

No comments:

Post a Comment