汇编语言-MIPS-冒泡排序(含伪代码)


题目描述

冒泡排序介绍


一、C++伪代码

# Pseudocode description of algorithm:
# 函数sort:                                                       #冒泡排序函数
#                  t1=0
#                  t2=0
#                  a2=4*a1
#                  for(t1=0;t1<a2;t1+=4)
#                  {
#                      t3=a2-t1-4
#                      for(t2=0;t2<t3;t2+=4)
#                      {
#                              t5=Mem(a0+t2)
#

猜你喜欢

转载自blog.csdn.net/weixin_46282197/article/details/115273684
今日推荐