MIPS程序集对数组进行排序

时间:2018-10-30 23:08:40

标签: assembly mips

我必须在MIPS中实现以下气泡排序算法:

<script>
function Progress() {
document.getElementById("submit_btn").addEventListener("submit", myFunction);
for (i = 0; i < 7; i++) {
    id = "#td" + i.toString();
    console.log("Node count:", a.childNodes.length, "and the current time is:", Date.now());
    console.log(id);
    setTimeout(function(id);
    }
}
</script>
<button class="btn" id="submit_btn" type="submit" value="Submit"    onClick="Progress()">Upload</button>

这就是我的MIPS代码所需要的。请记住,我是组装的新手。它不起作用,但是我不确定我要去哪里。我们必须使用MARS MIPS模拟器,因此我无法获得有关发生问题的最佳详细信息。

for (int i = 0; i < n-1; i++)
        for (int j = 0; j < n-i-1; j++)
            if (arr[j+1] < arr[j])
            {
                // swap temp and arr[i]
                temp = arr[j];
                arr[j] = arr[j+1];
                arr[j+1] = temp;
            }

0 个答案:

没有答案