入力コレクションを定義できるプログラムを知っている人は誰でも、並べ替えアルゴリズム (バブル、クイック、シェルなど) を段階的に視覚化できます。
したがって、いくつかの
1th iteration result: [3, 5, 7, 1, 8, 9]
2th iteration result: [3, 5, 1, 7, 8, 9]
3th iteration result: [3, 1, 5, 7, 8, 9]
4th iteration result: [1, 3, 5, 7, 8, 9]
5th iteration result: [1, 3, 5, 7, 8, 9]
Final result: [1, 3, 5, 7, 8, 9]