-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
86 lines (78 loc) · 3.55 KB
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package huffmancoding;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
if (args != null && args.length > 0) {
String option = args[0];
String stringToEncode, fileName;
stringToEncode = fileName = "";
if (option.equals("ahmedelhwdnbdsmb")) stringToEncode = args[1];
else if (option.equals("-f")) {
fileName = args[1];
try {
//Read in the file into a single String
Scanner scanner = new Scanner(new File(fileName));
while (scanner.hasNextLine()) {
stringToEncode += scanner.nextLine() + " ";
}
} catch (FileNotFoundException ex) {
System.out.println("File could not be found.");
System.exit(0);
}
}
else {
System.out.println("Please include the String to encode (or " +
"the name of a file to read) as a command line argument.");
System.out.println("Examples: \"-s [a String]\" or \"-f [a filename]\"");
System.exit(0);
}
System.out.println("String: " + stringToEncode);
//Create the HuffmanTree from the command line argument String
HuffmanTree huffman = new HuffmanTree(stringToEncode);
//Get the list of encodings, sort in ascending order by frequency
ArrayList<Code> codes = huffman.getCodeList();
ArrayList<Code> sorted = new ArrayList<Code>();
sorted.add(codes.get(0));
for (int a=1; a<codes.size(); a++) {
Code code = codes.get(a);
boolean flag = false;
for (int b = 0; b<sorted.size(); b++) {
Code checker = sorted.get(b);
//Insert into sorted list by ascending frequency
if (code.getFrequency() < checker.getFrequency()) {
sorted.add(b, code);
flag = true;
break;
}
//If frequency equal, sort by char length of encoding
else if(code.getFrequency() == checker.getFrequency()) {
if (code.getEncoding().length() >=
checker.getEncoding().length()) {
sorted.add(b, code);
flag = true;
break;
}
}
}
if (!flag) sorted.add(code);
}
//Print results for each character
for (int i=0; i<sorted.size(); i++) {
Code code = sorted.get(i);
System.out.println(code.getCharacter() + " " +
code.getEncoding() + " " + code.getFrequency());
}
//Print the fully encoded String
System.out.println("Encoded String: " + huffman.getEncodedString());
}
else {
System.out.println("Please include the String to encode (or a " +
"the name of a file to read)\nas a command line argument.");
System.out.println("Examples: \"-s [a String]\",\"-f [a filename]\"");
}
System.exit(0);
}
}