Ask your own question, for FREE!
Computer Science 19 Online
OpenStudy (anonymous):

how does the selection sort algorithm works?

OpenStudy (anonymous):

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.

OpenStudy (anonymous):

http://www.youtube.com/watch?v=t8g-iYGHpEA selection sort is in there

OpenStudy (anonymous):

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.

OpenStudy (anonymous):

Base on the O(n). Where does the selection sort falls. Is it O(nlogn) or ?

OpenStudy (anonymous):

\[O(nLogn)\]

OpenStudy (anonymous):

Please some body explain this for me --> O(nLogn).

OpenStudy (anonymous):

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

OpenStudy (anonymous):

Actually, selection sort is \(O\left(n^2\right)\)

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!