public class Ranking { public static void main(String[] args) { // Reads a file with 3 columns: ranking author title // Displays ranking, title and author sorted by ranking. // Asks the user for a title or a ranking number // and prints the author and ranking } // Read a file of rankings // Binary search by ranking //sequential search by title //sequential search by author //sort by ranking //print the chart }