Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们如何array通过使用 tasm 汇编器动态获取输入来对汇编语言中的 a 进行排序?
array
.model data .small array db 90h,10h,23h,33h . . .code int 3 end
使用某种排序算法 - 例如快速排序
虽然,对于非常小的数组(如您的示例),您最好使用更简单的算法作为冒泡排序
后者,因为非常容易实现(更小的代码)将比小数组的复杂快速排序更快。