9  8L. Iterative Search and Sort

9.1 Project Overview

Here are the files in your project

.
├── src 
│   └── Algorithms
|      ├── BubbleSortArray.java
|      ├── InsertionSortArray.java
|      ├── LinearSearchArray.java 
|      ├── Searchable.java
|      ├── SelectionSortArray.java 
│      └── Sortable.java
| 
└── test
    └── Algorithms
       ├── BubbleSortArrayTest.java
       ├── InsertionSortArrayTest.java
       ├── LinearSearchArrayTest.java 
       └── SelectionSortArrayTest.java 

9.2 Detailed Instructions - Click Here

Please watch:Lab and Project Structure Explaination.

You can refer to this link for more details regarding the lab and the sorting algorithms. Bubble Selection and Insertion Sort

Also Watch:

  1. Bubble Sort Explaination
  2. Selection and Insertion Sort Explaination

9.3 Rubric

  1. Project must compile, otherwise no grade.

  2. JavaDoc for LinearSearchArray, BubbleSortArray, InsertionSortArray, SelectionSortArray, (20 points).

  3. Unit tests for LinearSearchArray, BubbleSortArray, InsertionSortArray, SelectionSortArray (20 points each)

  4. TAs will manually review your work after submission, your grade may change as a result.

9.4 Project Files

Download the project files here.

9.5 Opening Project in Visual Studio Code

  1. Download the project files from

  2. Unzip the files to preferably an ITSC 2214 folder for this class. You must have created this folder before for previous labs. Unzip_Location_ITSC_2214

  3. Launch Visual Studio Code. Go to File > Open Folder…, navigate and select the folder where you have extracted the zip file. Vs_code_extract_zip

9.6 Update the autograder

First, please update your autograder by running:

umm update

9.7 Checking Autograder Feedback

You can check your grade locally by following these steps:

  1. Open a terminal. To open a terminal in Visual Studio Code on different operating systems:

    • Windows: Press ” Ctrl + ` ” or ” Ctrl + Shift + ` ” to open the integrated terminal.

    • Mac: Press ” Cmd + ` ” or ” Cmd + Shift + ` ” to open the integrated terminal.

  2. Run the command:

    umm grade ./script.rhai

9.8 Submitting your Project

When you are ready to submit your assignment:

  1. Open a terminal. To open a terminal in Visual Studio Code on different operating systems:

    • Windows: Press ” Ctrl + ` ” or ” Ctrl + Shift + ` ” to open the integrated terminal.

    • Mac: Press ” Cmd + ` ” or ” Cmd + Shift + ` ” to open the integrated terminal.

  2. You can copy and run the umm create-submission command in the terminal, and that should create a zip file with a name similar to submission-2024-01-24-15-04-50.zip.

    umm create-submission
  3. Submit the submission-2024-... .zip file to Gradescope. The submission zip file will appear in the file explorer tab of VS Code. You can right click on this file and click on reveal in explorer (windows) or reveal in finder (mac) in order to find this file. then, you can drag and drop this to gradescope for submission.