noun
bubble sort
A simple sorting algorithm that repeatedly steps through a list, compares adjacent elements, and swaps them if they are in the wrong order.
バブルソートは計算量がO(n²)なので、大きなデータには向かない。
Bubble sort has O(n²) complexity, so it is not suitable for large data sets.
初心者向けの教科書では、まずバブルソートを説明することが多い。
Textbooks for beginners often explain bubble sort first.