Selection sort: Difference between revisions

Content deleted Content added
适格 (talk | contribs)
m Complexity: Remove wrong description and add some correctness.
Exit Loop without iterating to end (Vikram Maharaj)
Tag: Reverted
Line 100:
/* found new minimum; remember its index */
jMin = j;
continue;
}
}