DevScript / Code-Khata

A database of code
Creative Commons Zero v1.0 Universal
30 stars 104 forks source link

Added code for Exchange Sort #452

Closed anmol111pal closed 1 year ago

anmol111pal commented 1 year ago

I added the code for Exchange Sort in Java.

It is quite similar to Selection sort, but with a minute change.

The change is that, it swaps the elements as and when it finds a smaller.

Whereas, in the Selection sort, it finds the smallest element and then swaps.