how does the selection sort algorithm works?
It works by passing through the the sequence n-1 times, working its way up the sequence. In each pass, it looks for the smallest element in the sequence (say I'm sorting in ascending order), storing it in a register. Once the pass is complete, it swaps the smallest element with the element in the current index and moves on.
Click on the green icon on top-left of this page http://www.sorting-algorithms.com/selection-sort It'll start visualizing the lines below which describes the how sorting is going on. There are also other visualizations for diff. alogs.
Base on the O(n). Where does the selection sort falls. Is it O(nlogn) or ?
\[O(nLogn)\]
Please some body explain this for me --> O(nLogn).
Ok, i asked this question a few back on CS.SE, it's better you have a look at all answers there than i explain http://cs.stackexchange.com/questions/192/how-to-come-up-with-the-runtime-of-algorithms
Actually, selection sort is \(O\left(n^2\right)\)
Join our real-time social learning platform and learn together with your friends!