π Background Information
The Java Stream API gives developers the power to use functional programming techniques on problems that were usually solved with classes in Java. This has a variety of benefits including potential performance gains, the ability to parallelize code, and the ability to model your code as a series of data transformations.
π― Problem Statement
- Write a set of four functions that calculate the minimum, maximum, sum, and average of an array of integers. These functions should use a
for
loop like we have seen in the class many times before. - Write a set of four functions that calculate the minimum, maximum, sum, and average of an array of integers. These functions should use the Java Stream API.
β Acceptance Criteria
- I expect to see eight functions total.
- Test your functions thoroughly through JUnit tests.
π Dev Notes
- You are allowed to use any and all helper functions included in the Stream API.
π₯οΈ Example Output
You might define your eight functions like so:
public int maximumUsingForLoop(int[] nums) { ... }
public int minimumUsingForLoop(int[] nums) { ... }
public int sumUsingForLoop(int[] nums) { ... }
public int averageUsingForLoop(int[] nums) { ... }
public int maximumUsingStream(int[] nums) { ... }
public int minimumUsingStream(int[] nums) { ... }
public int sumUsingStream(int[] nums) { ... }
public int averageUsingStream(int[] nums) { ... }
π Thought Provoking Questions
- Which syntax do you prefer for these calculations - streams or loops? Why?
- What is the difference between a βmutableβ and βimmutableβ structure in Java?
- What does the
map
function do in a stream? - What does the
filter
function do in a stream? - What does the
reduce
function do in a stream?
πΌ Add-Ons For the Portfolio
(One Credit) Evens Only
Write a function that takes an array of integers and filters out any odd numbers. You must use the Java Stream API for this solution and test it using JUnit.
(One Credit) Odds Only
Write a function that takes an array of integers and filters out any even numbers. You must use the Java Stream API for this solution and test it using JUnit.
(One Credit) Add Five
Write a function that takes an array of integers and returns a new array of integers where all of the numbers have been incremented by five. You must use the Java Stream API for this solution and test it using JUnit.
(One Credit) Square Numbers
Write a function that takes an array of integers and returns a new array of integers where all of the numbers have been squared. You must use the Java Stream API for this solution and test it using JUnit.
π Works Cited
N/A