CSE 11 Programming Assignment 5
Due Date: Monday, August 22, 10:00PM Pacific Time
Learning Goals
- Practice writing methods that calculate values from arrays using loops.
Collaboration
Different assignments in this course have different collaboration policies. On this assignment, you can collaborate with anyone in the course, including sharing code. In your submission, give credit to all students and course staff who helped you with this assignment by noting their name and how you used their ideas or work. Note that using someone’s work without giving credit to them is a violation of academic integrity.
You can get the starter code at
https://github.com/ucsd-cse11-su222/cse11-pa5-starter
Array Methods
In a file called ArrayExamples.java
, write the following methods in a class called ArrayExamples
. For each, write at least three tests (a test is a use of checkExpect
) where each of the three has a different length of array used in the input.
- Write a method called
joinWith
that takes an array ofString
and aString
separator, and returns a new String that contains the strings from the array separated by that separator. For example, for an array containing"a"
,"b"
, and"c"
with separator":"
, the result would be"a:b:c"
(note that there’s no colon at the end, just in between the elements). If the input array is empty, the method should return the empty string. If the input array contains only one string, the method should return that string. - Write a method called
allTrue
that takes an array ofboolean
and returnstrue
if all the elements in the array aretrue
. If the array is empty, the method producestrue
. - Write a method called
allWithinRange
that takes an array ofdouble
and two otherdouble
s calledlow
andhigh
, and returnstrue
if all of the numbers in the array are betweenlow
andhigh
(inclusive). If the array is empty, this should producetrue
. You can assume thatlow
≤high
. - Write a class called
Pair
with twoint
fields,a
andb
, and include a constructor. (AddPair
at the top level, outside theArrayExamples
class). Then write a method (inArrayExamples
, not inPair
) calledmaxmin
that takes an array ofint
and returns aPair
where thea
field is set to the smallest integer in the array and theb
is set to the largest. Assume the array has at least one element. - Write a method called
earliest
that takes an array ofString
s and returns theString
that is the earliest alphabetically (Computer scientists have a fancy name for alphabetical: lexicographic. You will need thecompareTo
method on Strings here. Try it out on a few examples if you’re not sure what it will do!). You can assume that the array has at least one element. - Write a method called
lookup
that takes an array ofString
calledkeys
, an array ofint
calledvalues
, and aString
calledkey
(three total parameters). It should find the index inkeys
where the argumentkey
appears, and then return theint
stored invalues
at that index (Hint: you may want to use.equals
or.compareTo
for string comparison instead of==
). If the key is not found, the method should return-1
. You can assume thatlookup
will always be given two arrays of the same length, and that there are no duplicate strings inkeys
. Example:keys
contains"UCSD"
,"UCLA"
,"UCI"
andvalues
contains36000
,44900
, and33467
. Forkey
"UCI"
, it should return33467
. For key"Stanford"
, it should return-1
.
Using Main and Command-line Arguments
- In a file called Longest.java, write a class called Longest. It should have a main method which prints out the longest string in the command line arguments. If no arguments were given, it should print nothing. Example:
$ javac Longest.java $ java Longest which argument is the longest argument $ java Longest one two three four three $ java Longest $
You can assume that there is not a tie for the longest string’s length.
- In a file called
Stats.java
, write a class calledStats
. It should have a main method which has a different effect depending on the first command line argument. In all cases, it can assume that there will be at least two command-line arguments, and all the arguments after the first are appropriate arguments toDouble.parseDouble
. If the first argument is …"--product"
, print the product of the provided numbers"--mean"
, print the average (mean) of the provided numbers"--total"
, print the sum of the provided numbers"--max"
, print the maximum of the provided numbers"--min"
, print the minimum of the provided numbers- any other string, print “Bad option <arg>” where you will replace “<arg>” with the first argument
- (Hint: As has been mentioned above, when comparing Strings, the
==
operator can be unreliable. Instead use.equals
or.compareTo
, which are in the Java String documentation.)
Examples:
$ javac Stats.java $ java Stats --product 2 3 4 24.0 $ java Stats --mean 5 9 7 7.0 $ java Stats --total 1 9 4 14.0 $ java Stats --max 9 1 4 0 9.0 $ java Stats --min 9 1 4 0 0.0 $ java Stats --mix 3 4 5 Bad option --mix
Submission
All of your Java files you will upload to Gradescope as usual.
FAQ
- Can we use <some other library> in this PA instead of loops?
- Try to use the things we learned most recently. That said, if you know something you want to try, that’s fine. Just be warned that it might be more work to not use the stuff we just learned
- I wrote test methods with the Tester, but
./run
is telling me that no tests ran.- Tester methods have to start with “test” at the beginning! For example,
boolean testAdd(Tester t) { …. }
. InArrayExamples.java
, all tests should be in classArrayExamples
, notPair
.
- Tester methods have to start with “test” at the beginning! For example,
- I failed some tests on Gradescope, but it is not showing me any error message, so I don’t know what is wrong.
- We did something slightly different with this autograder. For each method we wrote several tests but only publicly show you some of their results in detail. The goal is to give you a nudge to think more about detailed tests you could write for your own methods. So you can see where you failed and all you know (for now) is that you should try testing and understanding those methods more.
- My
earliest
method’s tests on Gradescope are not passing.- Double check your understanding of
compareTo
method. Try usingcompareTo
with longer strings and seeing the result. Does the method always return 0, -1, or 1?
- Double check your understanding of
- I am receiving an array index out of bounds error in
Longest.java
.- Unlike some of the previous method, you can not make the assumption that string argument(s) will be given. Hence, args[0] will throw the index out of bounds error. What is a possible way to check if any arguments are given?
- Help! I did the conditional checking and
Longest.java
is still throwing index out of bounds!
- Consider the following:
if (...){ // inside for loop } // after for loop
Recall that regardless if the if statement runs or not, the code beneath the if statement will run if not wrapped in an else statement. An else statement may be useful in avoiding the index out of bounds error.