Java Files Supporting Advanced Dictionary Search
Here are some of the Java files assisting the Advanced Dictionary Search. Certain features of the Advanced Dictionary Search were pre-generated by Java programs rather than being generated by the Perl backend each time.
- PalindromeFinder.java - PalindromeFinder takes lines of text on standard input and prints each line which is a strict palindrome to standard output. A string is a strict palindrome if its reverse is equal to itself.
- ReversibleWordsFinder.java - ReversibleWordsFinder takes lines of text on standard input and prints each line whose reverse exists in the input to standard output.
- SemordnilapFinder.java - SemordnilapFinder takes lines of text on standard input and prints each line whose reverse exists in the input to standard output and which is not a palindrome.
- WordsInAlphaOrderFinder.java - WordsInAlphaOrderFinder takes lines of text on standard input and prints each line which characters are in non-decreasing order of their ASCII code to standard output.
- WordsInStrictAlphaOrderFinder.java - WordsInStrictAlphaOrderFinder takes lines of text on standard input and prints each line which characters are in increasing order of their ASCII code to standard output.
Last revised July 2006