5. Complete the class code below and include a method named partition which takes an integer array and a partition integer as parameters and then partitions the original array into two new arrays where elements of the first array are all less than or equal to the partition integer and the second array are all greater than the partition integer. The method should print the original array, followed by the lower partition and finally the upper partition. Nothing should be returned by the method. For example, given int[ ] arr = {1, 45, 16, 7, 39, 6, 5, 11, 72, 31, 15} a method call to partition(arr, 11) should output: [1, 45, 16, 7, 39, 6, 5, 11, 72, 31, 15] [1, 5, 6, 7, 11] [15, 16, 31, 39, 45, 72] public class Partition { public static void main(String[] args) { int[] arrayToPartition = {1, 45, 16, 7, 39, 6, 5, 11, 72, 31, 15}; int partitionNumber = 11; partition(arrayToPartition, partitionNumber);

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter9: Advanced Modularization Techniques
Section: Chapter Questions
Problem 1GZ
icon
Related questions
Question
5. Complete the class code below and include a method named partition which takes an integer array and a partition integer as parameters and then
partitions the original array into two new arrays where elements of the first array are all less than or equal to the partition integer and the second array are
all greater than the partition integer.
The method should print the original array, followed by the lower partition and finally the upper partition. Nothing should be returned by the method.
For example, given int[ ] arr = {1, 45, 16, 7, 39, 6, 5, 11, 72, 31, 15} a method call to partition(arr, 11) should output:
%3D
[1, 45, 16, 7, 39, 6, 5, 11, 72, 31, 15]
[1, 5, 6, 7, 11]
[15, 16, 31, 39, 45, 72]
public class Partition {
public static void main(String[] args) {
int[] arrayToPartition = {1, 45, 16, 7, 39, 6, 5, 11, 72, 31, 15};
%3D
int partitionNumber = 11;
partition(arrayToPartition, partitionNumber);
}
/l your method code here
} // end of Partition class
Transcribed Image Text:5. Complete the class code below and include a method named partition which takes an integer array and a partition integer as parameters and then partitions the original array into two new arrays where elements of the first array are all less than or equal to the partition integer and the second array are all greater than the partition integer. The method should print the original array, followed by the lower partition and finally the upper partition. Nothing should be returned by the method. For example, given int[ ] arr = {1, 45, 16, 7, 39, 6, 5, 11, 72, 31, 15} a method call to partition(arr, 11) should output: %3D [1, 45, 16, 7, 39, 6, 5, 11, 72, 31, 15] [1, 5, 6, 7, 11] [15, 16, 31, 39, 45, 72] public class Partition { public static void main(String[] args) { int[] arrayToPartition = {1, 45, 16, 7, 39, 6, 5, 11, 72, 31, 15}; %3D int partitionNumber = 11; partition(arrayToPartition, partitionNumber); } /l your method code here } // end of Partition class
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
Passing Array as Argument
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
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT