mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-08 18:32:56 +08:00
Add tests, remove main in JumpSearch (#5669)
This commit is contained in:
@ -1007,6 +1007,7 @@
|
|||||||
* [InterpolationSearchTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/searches/InterpolationSearchTest.java)
|
* [InterpolationSearchTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/searches/InterpolationSearchTest.java)
|
||||||
* [IterativeBinarySearchTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/searches/IterativeBinarySearchTest.java)
|
* [IterativeBinarySearchTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/searches/IterativeBinarySearchTest.java)
|
||||||
* [IterativeTernarySearchTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/searches/IterativeTernarySearchTest.java)
|
* [IterativeTernarySearchTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/searches/IterativeTernarySearchTest.java)
|
||||||
|
* [JumpSearchTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/searches/JumpSearchTest.java)
|
||||||
* [KMPSearchTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/searches/KMPSearchTest.java)
|
* [KMPSearchTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/searches/KMPSearchTest.java)
|
||||||
* [OrderAgnosticBinarySearchTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/searches/OrderAgnosticBinarySearchTest.java)
|
* [OrderAgnosticBinarySearchTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/searches/OrderAgnosticBinarySearchTest.java)
|
||||||
* [PerfectBinarySearchTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/searches/PerfectBinarySearchTest.java)
|
* [PerfectBinarySearchTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/searches/PerfectBinarySearchTest.java)
|
||||||
|
@ -2,44 +2,55 @@ package com.thealgorithms.searches;
|
|||||||
|
|
||||||
import com.thealgorithms.devutils.searches.SearchAlgorithm;
|
import com.thealgorithms.devutils.searches.SearchAlgorithm;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An implementation of the Jump Search algorithm.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Jump Search is an algorithm for searching sorted arrays. It works by dividing the array
|
||||||
|
* into blocks of a fixed size (the block size is typically the square root of the array length)
|
||||||
|
* and jumping ahead by this block size to find a range where the target element may be located.
|
||||||
|
* Once the range is found, a linear search is performed within that block.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* The Jump Search algorithm is particularly effective for large sorted arrays where the cost of
|
||||||
|
* performing a linear search on the entire array would be prohibitive.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Worst-case performance: O(√N)<br>
|
||||||
|
* Best-case performance: O(1)<br>
|
||||||
|
* Average performance: O(√N)<br>
|
||||||
|
* Worst-case space complexity: O(1)
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This class implements the {@link SearchAlgorithm} interface, providing a generic search method
|
||||||
|
* for any comparable type.
|
||||||
|
*/
|
||||||
public class JumpSearch implements SearchAlgorithm {
|
public class JumpSearch implements SearchAlgorithm {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
|
||||||
JumpSearch jumpSearch = new JumpSearch();
|
|
||||||
Integer[] array = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
|
|
||||||
for (int i = 0; i < array.length; i++) {
|
|
||||||
assert jumpSearch.find(array, i) == i;
|
|
||||||
}
|
|
||||||
assert jumpSearch.find(array, -1) == -1;
|
|
||||||
assert jumpSearch.find(array, 11) == -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Jump Search algorithm implements
|
* Jump Search algorithm implementation.
|
||||||
*
|
*
|
||||||
* @param array the array contains elements
|
* @param array the sorted array containing elements
|
||||||
* @param key to be searched
|
* @param key the element to be searched
|
||||||
* @return index of {@code key} if found, otherwise <tt>-1</tt>
|
* @return the index of {@code key} if found, otherwise -1
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public <T extends Comparable<T>> int find(T[] array, T key) {
|
public <T extends Comparable<T>> int find(T[] array, T key) {
|
||||||
int length = array.length;
|
int length = array.length;
|
||||||
/* length of array */
|
|
||||||
int blockSize = (int) Math.sqrt(length);
|
int blockSize = (int) Math.sqrt(length);
|
||||||
/* block size to be jumped */
|
|
||||||
|
|
||||||
int limit = blockSize;
|
int limit = blockSize;
|
||||||
while (key.compareTo(array[limit]) > 0 && limit < array.length - 1) {
|
// Jumping ahead to find the block where the key may be located
|
||||||
limit = Math.min(limit + blockSize, array.length - 1);
|
while (limit < length && key.compareTo(array[limit]) > 0) {
|
||||||
|
limit = Math.min(limit + blockSize, length - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = limit - blockSize; i <= limit; i++) {
|
// Perform linear search within the identified block
|
||||||
if (array[i] == key) {
|
for (int i = limit - blockSize; i <= limit && i < length; i++) {
|
||||||
/* execute linear search */
|
if (array[i].equals(key)) {
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return -1;
|
return -1;
|
||||||
/* not found */
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
94
src/test/java/com/thealgorithms/searches/JumpSearchTest.java
Normal file
94
src/test/java/com/thealgorithms/searches/JumpSearchTest.java
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
package com.thealgorithms.searches;
|
||||||
|
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unit tests for the JumpSearch class.
|
||||||
|
*/
|
||||||
|
class JumpSearchTest {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test for finding an element present in the array.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
void testJumpSearchFound() {
|
||||||
|
JumpSearch jumpSearch = new JumpSearch();
|
||||||
|
Integer[] array = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
|
||||||
|
Integer key = 5; // Element to find
|
||||||
|
assertEquals(5, jumpSearch.find(array, key), "The index of the found element should be 5.");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test for finding the first element in the array.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
void testJumpSearchFirstElement() {
|
||||||
|
JumpSearch jumpSearch = new JumpSearch();
|
||||||
|
Integer[] array = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
|
||||||
|
Integer key = 0; // First element
|
||||||
|
assertEquals(0, jumpSearch.find(array, key), "The index of the first element should be 0.");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test for finding the last element in the array.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
void testJumpSearchLastElement() {
|
||||||
|
JumpSearch jumpSearch = new JumpSearch();
|
||||||
|
Integer[] array = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
|
||||||
|
Integer key = 10; // Last element
|
||||||
|
assertEquals(10, jumpSearch.find(array, key), "The index of the last element should be 10.");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test for finding an element not present in the array.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
void testJumpSearchNotFound() {
|
||||||
|
JumpSearch jumpSearch = new JumpSearch();
|
||||||
|
Integer[] array = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
|
||||||
|
Integer key = -1; // Element not in the array
|
||||||
|
assertEquals(-1, jumpSearch.find(array, key), "The element should not be found in the array.");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test for finding an element in an empty array.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
void testJumpSearchEmptyArray() {
|
||||||
|
JumpSearch jumpSearch = new JumpSearch();
|
||||||
|
Integer[] array = {}; // Empty array
|
||||||
|
Integer key = 1; // Key not present
|
||||||
|
assertEquals(-1, jumpSearch.find(array, key), "The element should not be found in an empty array.");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test for finding an element in a large array.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
void testJumpSearchLargeArray() {
|
||||||
|
JumpSearch jumpSearch = new JumpSearch();
|
||||||
|
Integer[] array = new Integer[1000];
|
||||||
|
for (int i = 0; i < array.length; i++) {
|
||||||
|
array[i] = i * 2; // Fill the array with even numbers
|
||||||
|
}
|
||||||
|
Integer key = 256; // Present in the array
|
||||||
|
assertEquals(128, jumpSearch.find(array, key), "The index of the found element should be 128.");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test for finding an element in a large array when it is not present.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
void testJumpSearchLargeArrayNotFound() {
|
||||||
|
JumpSearch jumpSearch = new JumpSearch();
|
||||||
|
Integer[] array = new Integer[1000];
|
||||||
|
for (int i = 0; i < array.length; i++) {
|
||||||
|
array[i] = i * 2; // Fill the array with even numbers
|
||||||
|
}
|
||||||
|
Integer key = 999; // Key not present
|
||||||
|
assertEquals(-1, jumpSearch.find(array, key), "The element should not be found in the array.");
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user