Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 205 Bytes

File metadata and controls

9 lines (5 loc) · 205 Bytes

Sorting Algorithms for Beginners

We implement 3 sorting algorithms for integer arrays.

Bubble Sort

The Bubble Sort algorithm sorts the array in ascending order.

The algorithm is implemented in C.