Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 313 Bytes

File metadata and controls

8 lines (7 loc) · 313 Bytes

Data_Structure_Using_Python

Some of Data Structure algorithm implemented python

Selection Sort

selection_sort

Step1:

  1. for i to len(array)
  2. Find the minimun element and swap it with i'th element.