use of edu.princeton.cs.algs4.Date in project algorithms-sedgewick-wayne by reneargento.
the class Exercise13 method main.
public static void main(String[] args) {
Date date = new Date(8, 3, 2016);
Exercise13 transaction = new Exercise13("Rene", date, 500);
StdOut.println(transaction);
StdOut.println("Expected: Rene spent 500.0 on 8/3/2016");
}
use of edu.princeton.cs.algs4.Date in project algorithms-sedgewick-wayne by reneargento.
the class Exercise14 method main.
public static void main(String[] args) {
Date date = new Date(8, 3, 2016);
Exercise14 transaction1 = new Exercise14("Rene", date, 500);
Exercise14 transaction2 = new Exercise14("Rene", date, 500);
Exercise14 transaction3 = new Exercise14("Argento", date, 600);
Exercise14 transaction4 = transaction3;
StdOut.println("Equals 1: " + transaction1.equals(transaction2) + " Expected: true");
StdOut.println("Equals 2: " + transaction2.equals(transaction1) + " Expected: true");
StdOut.println("Equals 3: " + transaction1.equals(transaction3) + " Expected: false");
StdOut.println("Equals 4: " + transaction3.equals(transaction4) + " Expected: true");
}
use of edu.princeton.cs.algs4.Date in project algorithms-sedgewick-wayne by reneargento.
the class Exercise33_RandomTransactions method generateRandomTransactions.
private Exercise21_ComparableTransactions[] generateRandomTransactions(int numberOfObjects) {
Exercise21_ComparableTransactions[] transactions = new Exercise21_ComparableTransactions[numberOfObjects];
for (int i = 0; i < numberOfObjects; i++) {
String who = "Client " + (i + 1);
int month = StdRandom.uniform(12) + 1;
int maxDay = month == 2 ? 28 : 30;
int day = StdRandom.uniform(maxDay) + 1;
int year = StdRandom.uniform(1900, 2018);
Date date = new Date(month, day, year);
double amount = (double) Math.round(StdRandom.uniform(0.0, 1000000.0) * 100) / 100;
Exercise21_ComparableTransactions transaction = new Exercise21_ComparableTransactions(who, date, amount);
transactions[i] = transaction;
}
return transactions;
}
use of edu.princeton.cs.algs4.Date in project algorithms-sedgewick-wayne by reneargento.
the class Exercise25_HashCache method main.
public static void main(String[] args) {
Exercise25_HashCache hashCache = new Exercise25_HashCache();
Transaction transaction = hashCache.new Transaction("Person 1", new Date(1, 10, 5), 1000);
StdOut.println(transaction.hashCode() + " Expected: Cache miss");
StdOut.println(transaction.hashCode() + " Expected: Cache hit");
StdOut.println(transaction.hashCode() + " Expected: Cache hit");
}
use of edu.princeton.cs.algs4.Date in project algorithms-sedgewick-wayne by reneargento.
the class Exercise22 method main.
public static void main(String[] args) {
Exercise22 exercise22 = new Exercise22();
Point2D point2D = exercise22.new Point2D(20, 13);
StdOut.println(point2D.hashCode());
Interval interval = exercise22.new Interval(1, 999);
StdOut.println(interval.hashCode());
Interval1D interval1D1 = new Interval1D(10.2, 30.20);
Interval1D interval1D2 = new Interval1D(2, 1000);
Interval2D interval2D = exercise22.new Interval2D(interval1D1, interval1D2);
StdOut.println(interval2D.hashCode());
Date date = exercise22.new Date(18, 4, 1989);
StdOut.println(date.hashCode());
}
Aggregations