mirror of
https://github.com/Rushilwiz/APCS.git
synced 2025-04-05 13:00:20 -04:00
177 lines
4.9 KiB
Java
177 lines
4.9 KiB
Java
// 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<sp.length; i++)
|
|
System.out.print(sp[i]+", ");
|
|
System.out.println();
|
|
String s = sc.decodeString(sp);
|
|
System.out.println(s);
|
|
|
|
StringPart[] sp2 = sc.encodeString("kippers");
|
|
for(int i=0; i<sp2.length; i++)
|
|
System.out.print(sp2[i]+", ");
|
|
System.out.println();
|
|
String s2 = sc.decodeString(sp2);
|
|
System.out.println(s2);
|
|
|
|
StringPart[] sp3 = sc.encodeString("colonials");
|
|
for(int i=0; i<sp3.length; i++)
|
|
System.out.print(sp3[i]+", ");
|
|
System.out.println();
|
|
String s3 = sc.decodeString(sp3);
|
|
System.out.println(s3);
|
|
|
|
StringPart[] sp4 = sc.encodeString("werewolf");
|
|
for(int i=0; i<sp4.length; i++)
|
|
System.out.print(sp4[i]+", ");
|
|
System.out.println();
|
|
String s4 = sc.decodeString(sp4);
|
|
System.out.println(s4);
|
|
|
|
// for testing
|
|
// StringPart[] sp5 = sc.encodeString("quickzip");
|
|
// for(int i = 0; i < sp5.length; i++)
|
|
// System.out.print(sp5[i] + ", ");
|
|
// System.out.println();
|
|
// String s5 = sc.decodeString(sp5);
|
|
// System.out.println(s5);
|
|
}
|
|
}
|
|
|
|
|
|
class StringCoder
|
|
{
|
|
private String masterString;
|
|
/** @param master the master string for the StringCoder
|
|
* Precondition: the master string contains all the letters of the alphabet
|
|
*/
|
|
public StringCoder(String master)
|
|
{
|
|
masterString = master;
|
|
}
|
|
|
|
/** @param parts an array of string parts that are valid in the master string
|
|
* Precondition: parts.size() > 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
|
|
|
|
******************************/
|
|
|