mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-28 06:55:02 +08:00
Add Majority Element (#4131)
This commit is contained in:
@ -0,0 +1,49 @@
|
||||
package com.thealgorithms.datastructures.hashmap.hashing;
|
||||
|
||||
import com.thealgorithms.datastructures.hashmap.hashing.MajorityElement;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class MajorityElementTest{
|
||||
@Test
|
||||
void testMajorityWithSingleMajorityElement() {
|
||||
int[] nums = {1, 2, 3, 9, 9, 6, 7, 8, 9, 9, 9, 9};
|
||||
List<Integer> expected = new ArrayList<>();
|
||||
expected.add(9);
|
||||
List<Integer> actual = MajorityElement.majority(nums);
|
||||
assertEquals(expected, actual);
|
||||
}
|
||||
|
||||
@Test
|
||||
void testMajorityWithMultipleMajorityElements() {
|
||||
int[] nums = {1, 2, 3, 3, 4, 4, 4, 4};
|
||||
List<Integer> expected = new ArrayList<>();
|
||||
expected.add(4);
|
||||
List<Integer> actual = MajorityElement.majority(nums);
|
||||
assertEquals(expected, actual);
|
||||
}
|
||||
|
||||
@Test
|
||||
void testMajorityWithNoMajorityElement() {
|
||||
int[] nums = {1, 2, 4, 4, 5, 4};
|
||||
List<Integer> expected = new ArrayList<>();
|
||||
expected.add(4);
|
||||
List<Integer> actual = MajorityElement.majority(nums);
|
||||
assertEquals(expected, actual);
|
||||
}
|
||||
|
||||
@Test
|
||||
void testMajorityWithEmptyArray() {
|
||||
int[] nums = {};
|
||||
List<Integer> expected = Collections.emptyList();
|
||||
List<Integer> actual = MajorityElement.majority(nums);
|
||||
assertEquals(expected, actual);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user