Project 1 Perform an user input integer array bubble sort us
Project 1
Perform an user input integer array “bubble sort” using MIPS in MARS
Your code should be able to:
(1) User input a random length array
(2) Sort the inputed array
(3) Output the sorted array
Extra credit will be given if you could perform only one task listed below:
(1) Handle \"invalid\" input
(2) Handle large number (e.g., bigger than 2^31-1) inputs
(3) Other sorting methods
Solution
#bubblesort.mips.s
