Question
Please finish the TODO sections for the following java code import java.util.List; import java.util.function.Function; import java.util.function.BiFunction; import java.util.function.Predicate; import java.util.Comparator; public class secondAssignment { static
Please finish the TODO sections for the following java code
import java.util.List; import java.util.function.Function; import java.util.function.BiFunction; import java.util.function.Predicate; import java.util.Comparator;
public class secondAssignment { static List
//TODO return null; }
static V foldL(V e, Iterablel, BiFunction
//TODO return null; }
static V foldR(V e, Iterablel, BiFunction f){ return null; }
static Iterable filter(Iterable l, Predicate p){
//TODO return null; }
static U minMum(Iterable l, Comparator c){ // write using fold. No other loops permitted.
//TODO return null; }
static > int minPos(Iterable l){ // write using fold. No other loops permitted. return 0; }
public static void main(String[] args) { // (1) Use map to implement the following behavior (described in Python). i.e given a List
// (8) Use minPos to calculate the position of the // maximum in a List of String
//TODO }
}
class Person{ final int salary; final String name; Person(int salary, String name){ this.salary = salary; this.name = name; } int getSalary() { return salary; } String name() { return name;} }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started