.data
string db 'sortstring',0
sorted db 20 dup(0)
.code
main proc
mov edx, offset string
mov ecx, lengthof string
call sort_string
; ...
; Output sorted string here
; ...
ret
main endp
sort_string proc
push ebp
mov ebp, esp
; ...
; Sort the characters of the string here
; ...
pop ebp
ret
sort_string endp
1条答案
按热度按时间lbsnaicq1#
使用的排序算法可以不同,但常用的方法是使用冒泡排序算法。