CSC212 Homework 8 2014

From dftwiki3
Revision as of 13:36, 14 November 2014 by Thiebaut (talk | contribs) (Submission)
Jump to: navigation, search

--D. Thiebaut (talk) 20:30, 12 November 2014 (EST)




This homework assignment is due Nov. 21st, 2014, at 11:55 p.m.




Problem #1


  • Write a program called Hw8_1.java based on the Quicksort program of Lab 12, that has the following properties:
  • It receives an array A of ints (int[] A), along with two ints defining the low and high indexes it must apply itself.
  • It receives an integer N, with N' less than or equal to the size of A.


        public static void Quicksort( int[] A,int low, int high, int N ) {
            ...
        }


  • It partially sorts the array A so that the lowest N integers of the array end up sorted in the left-most side of the array, which contains index 0. For example, assume that the modified Quicksort receives A = [10, 3, 5, 1, 2, 9, 0, 3], and N = 3. Quicksort will stop as soon as the lowest 3 integers of A are located in the cells of A with lowest index, i.e. A = [0, 1, 2, 5, 10, 3, 9]. Note that only the lowest 3 integers are sorted, and less than all the other integers of A, which are left in the array A, unsorted.
  • The purpose of this modified Quicksort is to have a very fast algorithm for locating the N lowest (or N highest) items of a large collection, without having to spend the time to sort the whole array.


Performance


  • Your program has to be robust and avoid O(N2) complexity arrays
  • Your program's execution time will be measured and compared to that of the solution program, on different arrays, some random, some sorted in increasing order, and others sorted in decreasing order. Your function will also be tested with values of N ranging from 0 to the length of A.
  • The grade will be proportional to the speed of your program.


Submission


  • Submit your program to Moodle, in the Homework 8, Problem 1 section.


Problem #2


Your Assignment


  • Write a Java program that reads a collection of tweets stored in a csv file, and outputs the tweet corresponding to the person with the most followers.
  • Your program should be called Hw8_2.java.


Requirements


Imports


  • Here are the only imports allowed in your program:


import java.io.File;
import java.io.FileNotFoundException;
import java.net.URL;
import java.util.PriorityQueue;
import java.util.Scanner;


File Name passed on the Command Line


  • Your program should get the name of the file of tweets on the command line. In Eclipse, this means providing the name in the Run Configurations/Arguments/Program Arguments. On Beowulf2, this means providing the name on the command line, as in java Hw8_2 tweets.csv.


Same Number of Followers


  • If there tweets from people who have the same largest number of followers, then your program should output all of them.


Additional Information


CSV File


  • You can use this file as a practice file for your Java program: tweets.csv
  • To make your csv file accessible to your program, you have two options:
In Eclipse: click on the src folder containing your HW8_2.java file, and right/control click to add a New File. Call it tweets.csv.
To access the file, use this code as inspiration:


String fileName = "tweets.csv";
URL url = Hw8_2.class.getClassLoader().getResource( fileName );
Scanner s = new Scanner( new File( url.getPath() ) );


On Beowulf2: put the file in the same directory where your program resides, and your code will find the file without problem.


Expected Output


  • Here are some examples of how your program should behave. The program is run on Beowulf2 in this example.


java Hw8_2 tweets.csv 
11/14/14 18:07: https://twitter.com/karessaNV_M/status/533237307751792640 (28568 followers) (follows 23674) At least you don't h...

java Hw8_2
Syntax: java Hw8_2 filename.csv
		where filename.csv is a csv file in the current path

java Hw8_2 badname.csv
Cannot find specified file badname.csv


  • Note that the program truncates the text of the tweets and adds the ellipses (...)


Submission


  • Submit your program on Moodle, in the Homework 8, Problem 2 section.
  • Your program will be tested with several different csv files, with different properties. Try to anticipate ways in which these files will be created.