Skip to content

feat: Add PhoneticAlphabetConverter new algorithm with Junit tests #5752

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
* [OctalToBinary](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/conversions/OctalToBinary.java)
* [OctalToDecimal](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/conversions/OctalToDecimal.java)
* [OctalToHexadecimal](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/conversions/OctalToHexadecimal.java)
* [PhoneticAlphabetConverter](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/conversions/PhoneticAlphabetConverter.java)
* [RgbHsvConversion](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/conversions/RgbHsvConversion.java)
* [RomanToInteger](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/conversions/RomanToInteger.java)
* [TurkishToLatinConversion](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/conversions/TurkishToLatinConversion.java)
Expand Down Expand Up @@ -740,6 +741,7 @@
* [OctalToBinaryTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/conversions/OctalToBinaryTest.java)
* [OctalToDecimalTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/conversions/OctalToDecimalTest.java)
* [OctalToHexadecimalTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/conversions/OctalToHexadecimalTest.java)
* [PhoneticAlphabetConverterTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/conversions/PhoneticAlphabetConverterTest.java)
* [RomanToIntegerTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/conversions/RomanToIntegerTest.java)
* [UnitConversionsTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/conversions/UnitConversionsTest.java)
* [UnitsConverterTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/conversions/UnitsConverterTest.java)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
package com.thealgorithms.conversions;

import java.util.HashMap;
import java.util.Map;

/**
* Converts text to the NATO phonetic alphabet.
* Examples:
* "ABC" -> "Alpha Bravo Charlie"
* "Hello" -> "Hotel Echo Lima Lima Oscar"
* "123" -> "One Two Three"
* "A1B2C3" -> "Alpha One Bravo Two Charlie Three"
*
* @author Hardvan
*/
public final class PhoneticAlphabetConverter {
private PhoneticAlphabetConverter() {
}

private static final Map<Character, String> PHONETIC_MAP = new HashMap<>();

static {
PHONETIC_MAP.put('A', "Alpha");
PHONETIC_MAP.put('B', "Bravo");
PHONETIC_MAP.put('C', "Charlie");
PHONETIC_MAP.put('D', "Delta");
PHONETIC_MAP.put('E', "Echo");
PHONETIC_MAP.put('F', "Foxtrot");
PHONETIC_MAP.put('G', "Golf");
PHONETIC_MAP.put('H', "Hotel");
PHONETIC_MAP.put('I', "India");
PHONETIC_MAP.put('J', "Juliett");
PHONETIC_MAP.put('K', "Kilo");
PHONETIC_MAP.put('L', "Lima");
PHONETIC_MAP.put('M', "Mike");
PHONETIC_MAP.put('N', "November");
PHONETIC_MAP.put('O', "Oscar");
PHONETIC_MAP.put('P', "Papa");
PHONETIC_MAP.put('Q', "Quebec");
PHONETIC_MAP.put('R', "Romeo");
PHONETIC_MAP.put('S', "Sierra");
PHONETIC_MAP.put('T', "Tango");
PHONETIC_MAP.put('U', "Uniform");
PHONETIC_MAP.put('V', "Victor");
PHONETIC_MAP.put('W', "Whiskey");
PHONETIC_MAP.put('X', "X-ray");
PHONETIC_MAP.put('Y', "Yankee");
PHONETIC_MAP.put('Z', "Zulu");
PHONETIC_MAP.put('0', "Zero");
PHONETIC_MAP.put('1', "One");
PHONETIC_MAP.put('2', "Two");
PHONETIC_MAP.put('3', "Three");
PHONETIC_MAP.put('4', "Four");
PHONETIC_MAP.put('5', "Five");
PHONETIC_MAP.put('6', "Six");
PHONETIC_MAP.put('7', "Seven");
PHONETIC_MAP.put('8', "Eight");
PHONETIC_MAP.put('9', "Nine");
}

public static String textToPhonetic(String text) {
StringBuilder phonetic = new StringBuilder();
for (char c : text.toUpperCase().toCharArray()) {
phonetic.append(PHONETIC_MAP.getOrDefault(c, String.valueOf(c))).append(" ");
}
return phonetic.toString().trim();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package com.thealgorithms.conversions;

import static org.junit.jupiter.api.Assertions.assertEquals;

import org.junit.jupiter.api.Test;

public class PhoneticAlphabetConverterTest {

@Test
public void testTextToPhonetic() {
assertEquals("Alpha Bravo", PhoneticAlphabetConverter.textToPhonetic("AB"));
assertEquals("Alpha Bravo Charlie", PhoneticAlphabetConverter.textToPhonetic("ABC"));
assertEquals("Alpha One Bravo Two Charlie Three", PhoneticAlphabetConverter.textToPhonetic("A1B2C3"));
assertEquals("Hotel Echo Lima Lima Oscar", PhoneticAlphabetConverter.textToPhonetic("Hello"));
assertEquals("One Two Three", PhoneticAlphabetConverter.textToPhonetic("123"));
assertEquals("Alpha Bravo Charlie Delta Echo Foxtrot Golf Hotel India Juliett Kilo Lima Mike November Oscar Papa Quebec Romeo Sierra Tango Uniform Victor Whiskey X-ray Yankee Zulu Zero One Two Three Four Five Six Seven Eight Nine",
PhoneticAlphabetConverter.textToPhonetic("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"));
assertEquals("Alpha Bravo Charlie Delta Echo Foxtrot Golf Hotel India Juliett Kilo Lima Mike November Oscar Papa Quebec Romeo Sierra Tango Uniform Victor Whiskey X-ray Yankee Zulu Zero One Two Three Four Five Six Seven Eight Nine",
PhoneticAlphabetConverter.textToPhonetic("abcdefghijklmnopqrstuvwxyz0123456789"));
}
}