first commit

This commit is contained in:
Jose Caban
2025-06-07 01:59:34 -04:00
commit 388ac241f0
3558 changed files with 9116289 additions and 0 deletions

13
CS1322/p5/P5_RUN_BIG.java Normal file
View File

@@ -0,0 +1,13 @@
public class P5_RUN_BIG{
private static void printArray(Integer[] t){
for(int i=0; i<t.length; i++){
System.out.print(t[i] + ","+ ((i%10)==0?"\n":""));
}
}
public static void main(String args[]){
QuickSort qs = new QuickSort(new ArrayWrapper(ArrayWrapper.getRandomIntegerArray(10000)));
qs.doSort();
P5_RUN_BIG.printArray(qs.getArrayWrapper().toIntArray());
}
}