Browse Source

Update name of text file in hash functions program.

master
Charles Reid 8 years ago
parent
commit
6574cb76f4
  1. 4
      hash/HashFunctions.java

4
hash/HashFunctions.java

@ -20,7 +20,7 @@ public class HashFunctions { @@ -20,7 +20,7 @@ public class HashFunctions {
public static void manyCollisions() throws FileNotFoundException {
Scanner s = new Scanner(new BufferedReader(new FileReader("14oxenofthesun.dat")));
Scanner s = new Scanner(new BufferedReader(new FileReader("14oxenofthesun.txt")));
// Populate word list
Set<String> wordset = new HashSet<>();
@ -54,7 +54,7 @@ public class HashFunctions { @@ -54,7 +54,7 @@ public class HashFunctions {
public static void countCollisions() throws FileNotFoundException {
Scanner s = new Scanner(new BufferedReader(new FileReader("14oxenofthesun.dat")));
Scanner s = new Scanner(new BufferedReader(new FileReader("14oxenofthesun.txt")));
// Populate word list
Set<String> wordset = new HashSet<>();

Loading…
Cancel
Save