-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeywordcounter.java
More file actions
32 lines (28 loc) · 879 Bytes
/
keywordcounter.java
File metadata and controls
32 lines (28 loc) · 879 Bytes
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
import java.io.IOException;
/*
* Author- Priyam Saikia (UFID 9414-5292)
*
Version History-
11/09/2018 - Priyam Saikia - Initial Version
Functionality-
This function is the entry point that calls function to determine the most used
keywords in an internet search by DuckDuckGo. The input is in form of a text file
with keywords and corresponding frequency they have been searched for.
Functions:
1. void main(String[] args)
*/
public class keywordcounter {
// **************************************************************************
// Function: main
// Return: void
// Input: String[] args
// **************************************************************************
public static void main(String[] args){
Most_Frequent_Search mfs = new Most_Frequent_Search();
try {
mfs.main(args[0]);
} catch (IOException e) {
System.out.println(e);;
}
}
}