I am reading Cracking the Coding Interview and it has an example of finding prime number which I ran on JShell
boolean isPrime(int n) {
for (int i
Problem one, you should be using noneMatch
(not anyMatch
). Problem two, your range is off. Use rangeClosed
(or add one to your end) which should be the square root of n
(not just n
) - and you started with 2 as an initial value in your first test. Also, you might as well make the method static
. Like,
static boolean isPrimeStream(int n) {
return IntStream.rangeClosed(2, (int) Math.sqrt(n))
.noneMatch(i -> n % i == 0);
}
Also, we can improve your first example by handling 2
as a special case. That allows you to begin with three and increment by two skipping all even values.
static boolean isPrime(int n) {
if (n == 2) {
return true;
} else if (n == 1 || n % 2 == 0) {
return false;
}
for (int i = 3; i * i <= n; i += 2) {
if (n % i == 0) {
return false;
}
}
return true;
}
What is the point of using Java8 streams to get this thing done. To me you are reinventing the wheel. This one liner will be suffice.
BigInteger.valueOf(n).isProbablePrime(50);
Also notice that there are some problems which can be better solved using streams. But that does not mean stream is the silver bullet to solve all your problems.
Here's an excerpt from the Documentation about certainty.
For a large known prime, and for any certainty > 0, is it accurate to say that b.isProbablePrime(certainty) will always return true.
You should use IntStream.noneMatch there as:
boolean isPrimeStream(int n) {
return IntStream.range(2, n) // note division by zero possible in your attempt
.noneMatch(i -> n % i == 0);
}
Edit: As pointed in comments by Andreas, using range(2, n)
to avoid division by zero and since division by 1 would always lead to the condition being true and returning the result as false
otherwise.
Returns whether no elements of this stream match the provided predicate
Your current code is using IntStream.anyMatch
Returns whether any elements of this stream match the provided predicate
which is why it would return true
if the condition specified is satisfied for any input instead of when the method is supposed to return false
.
how to do similar to for loop above
With java-9 or above you could use IntStrem.iterate as
private boolean isPrimeStream(int n) {
return IntStream.iterate(2, i -> i * i <= n, i -> i + 1) // similar to the loop
.noneMatch(i -> n % i == 0);
}