0
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?

単純交換法(バブルソート)

Last updated at Posted at 2024-05-26

単純交換法(バブルソート)とは

データを並べ替える整列アルゴリズムの一つ。
隣り合ったデータを交換する処理を繰り返して、全体を整列する。
実行速度は遅い。

対象データ

以下の配列を昇順に並べ替える

$array = [5, 3, 4, 1, 2];

フローチャート

変数iは比較する要素のうち右側の要素の添字を表す変数。
変数kは既に確定した要素の添字。

image.png

手順

①右端の要素から順に、隣り合ったデータを昇順に並べ替える
②左端の要素から一つずつ順番に、データが昇順に整列していく

0
0
0

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
0
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?