mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-27 22:43:30 +08:00
38 lines
1.4 KiB
Java
38 lines
1.4 KiB
Java
package com.thealgorithms.others;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
|
|
public final class Conway {
|
|
private Conway() {
|
|
}
|
|
|
|
/*
|
|
* This class will generate the conway sequence also known as the look and say sequence.
|
|
* To generate a member of the sequence from the previous member, read off the digits of the
|
|
*previous member, counting the number of digits in groups of the same digit. For example: 1 is
|
|
*read off as "one 1" or 11. 11 is read off as "two 1s" or 21. 21 is read off as "one 2, one 1"
|
|
*or 1211. 1211 is read off as "one 1, one 2, two 1s" or 111221. 111221 is read off as "three
|
|
*1s, two 2s, one 1" or 312211. https://en.wikipedia.org/wiki/Look-and-say_sequence
|
|
* */
|
|
|
|
private static final StringBuilder BUILDER = new StringBuilder();
|
|
|
|
protected static List<String> generateList(String originalString, int maxIteration) {
|
|
List<String> numbers = new ArrayList<>();
|
|
for (int i = 0; i < maxIteration; i++) {
|
|
originalString = generateNextElement(originalString);
|
|
numbers.add(originalString);
|
|
}
|
|
return numbers;
|
|
}
|
|
|
|
public static String generateNextElement(String originalString) {
|
|
BUILDER.setLength(0);
|
|
String[] stp = originalString.split("(?<=(.))(?!\\1)");
|
|
Arrays.stream(stp).forEach(s -> BUILDER.append(s.length()).append(s.charAt(0)));
|
|
return BUILDER.toString();
|
|
}
|
|
}
|