Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Finish all functions and create junit test file import java.util.List; import java.util.function.Function; import java.util.function.BiFunction; import java.util.function.Predicate; public class hw2 { static List map(Iterable l, Function

Finish all functions and create junit test file

import java.util.List; import java.util.function.Function; import java.util.function.BiFunction; import java.util.function.Predicate;

public class hw2 { static List map(Iterable l, Function f) { return null; }

static V foldLeft(V e, Iterablel, BiFunction f){ return null; }

static V foldRight(V e, Listl, BiFunction f){ return null; }

static List filter(List l, Predicate p){ return null; }

static U binFoldLeft(U e, Listl, BiFunction f){ return null; }

public static void main(String[] args) { // Use map to implement the following behavior (described in Python). i.e given a List create a List of the hashes of the objects. // names = ['Mary', 'Isla', 'Sam'] // for i in range(len(names)): // names[i] = hash(names[i]) // Use foldleft to calculate the sum of a list of integers. // i.e write a method: int sum(List l) // Use foldRight to concatenate a list of strings i.e write a method // String s (List l) // consider an array of Persons. Use filter to // print the names of the Persons whose salary is // greater than 100000 //Use binFoldLeft to find the number of occurrences // of 5 in an array of integers

}

}

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2010 Barcelona Spain September 2010 Proceedings Part 2 Lnai 6322

Authors: Jose L. Balcazar ,Francesco Bonchi ,Aristides Gionis ,Michele Sebag

2010th Edition

364215882X, 978-3642158827

More Books

Students also viewed these Databases questions

Question

9. Explain the relationship between identity and communication.

Answered: 1 week ago

Question

a. How do you think these stereotypes developed?

Answered: 1 week ago

Question

a. How many different groups were represented?

Answered: 1 week ago