Bubble Sorts

?

Bubble Sorts

Advantages

  • Simple to write code for (compared to merge + insertion)
  • Simple to understand (biggest number goes to top)
  • Doesn't need much extra memory to run the algorithm

Disadvantages

  • Very slow to sort the list, speed depends on list length (ll)

Evaluation

Bubble sorts are a good option for smaller lists, without many variables. They are simple to understand, and easy to write code for, but are slow to sort the list.

Comments

No comments have yet been made