1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

x86-64 assembly language アセンブリ

Posted at

for (i = (length - 1) to 0) {
swapped = false
for (j = 0 to i - 1)
if (list(j) > list(j + 1)) {
tmp = list(j)
list(j) = list(j + 1)
list(j + 1) = tmp
swapped = true
}
if (swapped = false) exit
}

このバブルソートをx86-64で書ける方いませんか?
Does anyone can write this babblesort with x84-64 assembly language?

1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?