Princeton1/clients/src/main/java/com/hithomelabs/clients/module6/MergeClient.java
hitanshu310 90f8b14ee5
All checks were successful
sample gradle build and test / build (pull_request) Successful in 55s
sample gradle build and test / build (push) Successful in 49s
Mode commonly used objects to a new module common, added dependencies and test dependencies for other modules on common, added Merge sort, client and tests
2025-02-04 02:15:31 +05:30

24 lines
606 B
Java

package com.hithomelabs.clients.module6;
import com.hithomelabs.princeton1.common.Apple;
import com.hithomelabs.princeton1.module6.Merge;
import java.util.Random;
public class MergeClient {
public static void main(String[] args) {
int size = 100;
Apple[] apples = new Apple[size];
Merge<Apple> merge = new Merge<Apple>();
for (int i = 0; i < apples.length; i++) {
apples[i] = new Apple(new Random().nextInt(1000));
}
merge.sort(apples);
for (int i = 0; i < apples.length; i++)
System.out.println(apples[i]);
}
}