Kumar-laxmi / Algorithms

A Repository for algorithms in C, C++, Python and Java
Apache License 2.0
325 stars 367 forks source link

Add Bubble Sort in C++ , Java & Python #1701

Closed Abhay3819 closed 1 year ago

Abhay3819 commented 1 year ago

Description

Problem - Sort of Array using Bubble Sort in C++ , Java & Python

Examples -

Inout : 3, 1, 8, 6, 5 Output : 1, 3, 5, 6, 8

Inout : 19, 15, 22, 16, 25 Output : 15, 16, 19, 22, 25

Time Complexity : O(N2) Space Complexity : O(1)

Kumar-laxmi commented 1 year ago

Sorry this algorithm has been implemented already