// Name: // Date: import java.util.*; public class StringCoderDriver { public static void main(String[] args) { StringCoder sc = new StringCoder("sixtyzipperswerequicklypickedfromthewovenjutebag"); StringPart[] sp = sc.encodeString("overeager"); for(int i=0; i 0 * @return the string obtained by concatenating the parts of the master string */ //PART A: // =8 public String decodeString(StringPart[] parts) { // 1 String decodedString = ""; for (int i = 0; i < parts.length;i++) { int start = parts[i].getStart(); int length = parts[i].getLength(); decodedString += masterString.substring(start, start+length); } return decodedString; } /** @param str the string to encode using the master string * Precondition: all of the characters in str appear in the master string; * str.length() > 0 * @return a string part in the master string that matches the beginning of str. * The returned string part has length at least 1. */ private StringPart findPart(String str) { int x = 0; String s = str.substring(0, x); while( masterString.contains(s) ) { x++; if(x > str.length()) break; s = str.substring(0, x); } s = str.substring(0, x - 1); int start = masterString.indexOf(s); StringPart sp = new StringPart(start, s.length()); return sp; } /** @param word the string to be encoded * Precondition: all of the characters in word appear in the master string; * word.length() > 0 * @return an ArrayList of string parts of the master string that can be combined * to create word */ // Part B // =12 public StringPart[] encodeString(String word) { StringPart[] temp = new StringPart[100]; int partCount = 0; String currentPart = ""; int index = 0; while(word.length() > 0) { temp[partCount] = findPart(word); word = word.substring(temp[partCount].getLength()); partCount++; } StringPart[] parts = new StringPart[partCount]; for (int i = 0; i < parts.length; i++) parts[i] = temp[i]; return parts; } } class StringPart { private int start; private int length; /** @param start the starting position of the substring in a master string * @param length the length of the substring in a master string */ public StringPart(int start, int length) { this.start = start; this.length = length; } /** @return the starting position of the substring in a master string */ public int getStart() { return start; } /** @return the length of the substring in a master string */ public int getLength() { return length; } public String toString() { return "(" + start + ", " + length + ")"; } } /*********************************** (37, 3), (14, 2), (46, 2), (9, 2), overeager (20, 1), (6, 6), kippers (19, 1), (31, 1), (21, 1), (31, 1), (40, 1), (1, 1), (46, 1), (21, 1), (0, 1), colonials (12, 4), (36, 2), (21, 1), (29, 1), werewolf ******************************/