Given a queue containing the alphabets of your name, write an algorithm that deletes all vowels from the name without changing the order of remaining elements in the queue. What will be the time complexity of your algorithm code example

Example: Java program to delete vowels in a given string

// Java program to delete vowels in a given string
import java.util.*;
public class RemoveVowelsInString
{
   public static void main(String[] args)
   {
      String str = "Deekshit Prasad";
      System.out.println("Given string: " + str);
      str = str.replaceAll("[AaEeIiOoUu]", "");
      System.out.println("After deleting vowels in given a string: " + str);
   }
}