Write a static method named vowelsBeforeconsonants that accepts an array of characters as a parameter and rearranges its elements so that all even vowels appear before the consonants. For example, if the following array is passed to your method: char[] numbers = {'r', 't', 'a', 'o', 'p', 'u'}; Then after the method has been called, one acceptable ordering of the elements would be: {'a', 'o', 'u', 'r', 't', 'p'} The exact order of the elements does not matter, so long as all vowels appear before all For example, the following would also be an acceptable ordering: consonants. {'o', 'a', 'u', 't', 'p', 'r'} Do not make any assumptions about the length of the array or the range of values it might contain. For example, the array might contain no even vowels or no consonants. You may assume that the array is not null. You may not use any temporary arrays to help you solve this problem. (But you may declare as many simple variables as you like, such as chars.) You also may not use any other data structures such as the ArrayList class from Chapter 10. DO NOT use Arrays.sort in your solution. Hint: This is actually a sorting problem. In BubbleSort you tested pairs of elements and swapped them if the left element is larger than the right element. In this problem, the swap happens when the left element is a vowel and the right element is a consonant.

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter9: Advanced Modularization Techniques
Section: Chapter Questions
Problem 2GZ
icon
Related questions
Question
Write a static method named vowelsBeforeconsonants that accepts an array of characters as a parameter and rearranges
its elements so that all even vowels appear before the consonants. For example, if the following array is passed to your
method:
char[] numbers = {'r', 't', 'a', 'o', 'p', 'u'};
Then after the method has been called, one acceptable ordering of the elements would be:
{'a', 'o', 'u', 'r', 't', 'p'}
The exact order of the elements does not matter, so long as all vowels appear before all
For example, the following would also be an acceptable ordering:
consonants.
{'o', 'a', 'u', 't', 'p', 'r'}
Do not make any assumptions about the length of the array or the range of values it might contain. For example, the array
might contain no even vowels or no consonants. You may assume that the array is not null.
You may not use any temporary arrays to help you solve this problem. (But you may declare as
many simple variables as you like, such as chars.) You also may not use any other data structures such as the ArrayList
class from Chapter 10. DO NOT use Arrays.sort in your solution.
Hint: This is actually a sorting problem. In BubbleSort you tested pairs of elements and swapped them if the left element
is larger than the right element. In this problem, the swap happens when the left element is a vowel and the right element is
a consonant.
Transcribed Image Text:Write a static method named vowelsBeforeconsonants that accepts an array of characters as a parameter and rearranges its elements so that all even vowels appear before the consonants. For example, if the following array is passed to your method: char[] numbers = {'r', 't', 'a', 'o', 'p', 'u'}; Then after the method has been called, one acceptable ordering of the elements would be: {'a', 'o', 'u', 'r', 't', 'p'} The exact order of the elements does not matter, so long as all vowels appear before all For example, the following would also be an acceptable ordering: consonants. {'o', 'a', 'u', 't', 'p', 'r'} Do not make any assumptions about the length of the array or the range of values it might contain. For example, the array might contain no even vowels or no consonants. You may assume that the array is not null. You may not use any temporary arrays to help you solve this problem. (But you may declare as many simple variables as you like, such as chars.) You also may not use any other data structures such as the ArrayList class from Chapter 10. DO NOT use Arrays.sort in your solution. Hint: This is actually a sorting problem. In BubbleSort you tested pairs of elements and swapped them if the left element is larger than the right element. In this problem, the swap happens when the left element is a vowel and the right element is a consonant.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Arrays
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage