1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
| include irvine32.inc .data arr dd 12,4,159,30,74,1,274,33 len dd ? msg db 'key=30在数组中的下标为',0 .code main proc mov len,lengthof arr push offset arr push len call print
push offset arr push 0 mov eax,len dec eax push eax call quicksort
push offset arr push len call print
push offset arr push len push 30 call binsearch lea edx,msg call writestring call writedec call crlf
exit main endp
binsearch proc push ebp mov ebp,esp sub esp,4 pushad
mov esi,0 mov edi,[ebp+12] dec edi mov ecx,[ebp+16] mov edx,-1 again: cmp esi,edi jg final mov ebx,esi add ebx,edi shr ebx,1
mov eax,[ebp+8] cmp eax,[ecx+ebx*4] jz next L1: mov eax,[ebp+8] cmp eax,[ecx+ebx*4] jl L2 mov esi,ebx inc esi jmp again
L2: mov edi,ebx dec edi jmp again
next: mov edx,ebx jmp final
final: mov [ebp-4],edx popad mov eax,[ebp-4] add esp,4 pop ebp
ret 12 binsearch endp
print proc push ebp mov ebp,esp pushad
mov ebx,[ebp+12] mov esi,0 again: cmp esi,[ebp+8] jge final mov eax,[ebx+4*esi] call writeint mov al,' ' call writechar inc esi jmp again
final: call crlf popad pop ebp
ret 8 print endp
swap proc push ebp mov ebp,esp pushad
mov ebx,[ebp+12] mov eax,[ebx] mov ecx,[ebp+8] mov edx,[ecx] mov [ebx],edx mov [ecx],eax
popad pop ebp ret 8 swap endp
partition proc push ebp mov ebp,esp sub esp,4 pushad
mov ebx,[ebp+16] mov esi,[ebp+12] mov edi,[ebp+8] mov eax,[ebx+4*esi] again: cmp esi,edi jge final again1: cmp esi,edi jge final1 cmp [ebx+4*edi],eax jl final1 dec edi jmp again1 final1: lea edx,[ebx+4*esi] push edx lea edx,[ebx+4*edi] push edx call swap
again2: cmp esi,edi jge final2 cmp [ebx+4*esi],eax jg final2 inc esi jmp again2 final2: lea edx,[ebx+4*esi] push edx lea edx,[ebx+4*edi] push edx call swap
jmp again
final: mov [ebp-4],esi popad mov eax,[ebp-4] add esp,4 pop ebp
ret 12 partition endp
quicksort proc push ebp mov ebp,esp pushad
mov esi,[ebp+12] mov edi,[ebp+8] mov ebx,[ebp+16] cmp esi,edi jge final push ebx push esi push edi call partition push ebx push esi dec eax push eax call quicksort push ebx add eax,2 push eax push edi call quicksort
final: popad pop ebp
ret 12 quicksort endp
end main
|