No minor-clarifications will be provided. Assignments are also meant to improve your decision-making. Any major change (unlikely) will be clarified from our side on Piazza. But take your call on implementation level details.
Write a Java program assignment4.java, that takes three command line arguments: two csv files (samples given below), and a function name. Based on the function name, your program output changes.
nodes.csv 327 nodes: Each node represents a character.
edges.csv 9891 edges (with weights): Edges between nodes/characters represents that the
characters/nodes have appeared together. Edge-weights are proportional to the number of co-occurrences
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
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 | 1 | 2 | 3 | 4 | 5 |