What type of array sorting algorithm is this?
What type of sorting algorithm is this? It goes through each index, then gets the minimum value in the rest of the array and swaps.
private void Sort(int myArray)
{
for (int i = 0; i < myArray.Length; i ++)
{
var minValue = myArray[i];
var minIndex = i;
for(int j = i +1; j< myArray.Length; j++)
{
if (myArray[j] < minValue)
{
minIndex = j;
minValue = myArray[j];
}
}
var temp = myArray[i];
myArray[i] = myArray[minIndex];
myArray[minIndex] = temp;
}
}
arrays algorithm sorting
add a comment |
What type of sorting algorithm is this? It goes through each index, then gets the minimum value in the rest of the array and swaps.
private void Sort(int myArray)
{
for (int i = 0; i < myArray.Length; i ++)
{
var minValue = myArray[i];
var minIndex = i;
for(int j = i +1; j< myArray.Length; j++)
{
if (myArray[j] < minValue)
{
minIndex = j;
minValue = myArray[j];
}
}
var temp = myArray[i];
myArray[i] = myArray[minIndex];
myArray[minIndex] = temp;
}
}
arrays algorithm sorting
2
For what it's worth, if I do a Google search for "sorting algorithm goes through each index, then gets the minimum value in the rest of the array and swaps", the first link (excluding this question) tells me it's selection sort.
– Dukeling
Nov 21 '18 at 7:54
@Dukeling You'd be surprised (or perhaps not, by now) how often a Google search for the title question or the first line reveals the answer.
– Jim Mischel
Nov 21 '18 at 14:56
@JimMischel I know that all too well. In this case I thought it useful to point it out since it might not be the type of thing someone would typically expect to get an answer through Google for (it's not one of the many "how do I do X" questions).
– Dukeling
Nov 21 '18 at 17:42
add a comment |
What type of sorting algorithm is this? It goes through each index, then gets the minimum value in the rest of the array and swaps.
private void Sort(int myArray)
{
for (int i = 0; i < myArray.Length; i ++)
{
var minValue = myArray[i];
var minIndex = i;
for(int j = i +1; j< myArray.Length; j++)
{
if (myArray[j] < minValue)
{
minIndex = j;
minValue = myArray[j];
}
}
var temp = myArray[i];
myArray[i] = myArray[minIndex];
myArray[minIndex] = temp;
}
}
arrays algorithm sorting
What type of sorting algorithm is this? It goes through each index, then gets the minimum value in the rest of the array and swaps.
private void Sort(int myArray)
{
for (int i = 0; i < myArray.Length; i ++)
{
var minValue = myArray[i];
var minIndex = i;
for(int j = i +1; j< myArray.Length; j++)
{
if (myArray[j] < minValue)
{
minIndex = j;
minValue = myArray[j];
}
}
var temp = myArray[i];
myArray[i] = myArray[minIndex];
myArray[minIndex] = temp;
}
}
arrays algorithm sorting
arrays algorithm sorting
asked Nov 21 '18 at 2:35
gte443fgte443f
61
61
2
For what it's worth, if I do a Google search for "sorting algorithm goes through each index, then gets the minimum value in the rest of the array and swaps", the first link (excluding this question) tells me it's selection sort.
– Dukeling
Nov 21 '18 at 7:54
@Dukeling You'd be surprised (or perhaps not, by now) how often a Google search for the title question or the first line reveals the answer.
– Jim Mischel
Nov 21 '18 at 14:56
@JimMischel I know that all too well. In this case I thought it useful to point it out since it might not be the type of thing someone would typically expect to get an answer through Google for (it's not one of the many "how do I do X" questions).
– Dukeling
Nov 21 '18 at 17:42
add a comment |
2
For what it's worth, if I do a Google search for "sorting algorithm goes through each index, then gets the minimum value in the rest of the array and swaps", the first link (excluding this question) tells me it's selection sort.
– Dukeling
Nov 21 '18 at 7:54
@Dukeling You'd be surprised (or perhaps not, by now) how often a Google search for the title question or the first line reveals the answer.
– Jim Mischel
Nov 21 '18 at 14:56
@JimMischel I know that all too well. In this case I thought it useful to point it out since it might not be the type of thing someone would typically expect to get an answer through Google for (it's not one of the many "how do I do X" questions).
– Dukeling
Nov 21 '18 at 17:42
2
2
For what it's worth, if I do a Google search for "sorting algorithm goes through each index, then gets the minimum value in the rest of the array and swaps", the first link (excluding this question) tells me it's selection sort.
– Dukeling
Nov 21 '18 at 7:54
For what it's worth, if I do a Google search for "sorting algorithm goes through each index, then gets the minimum value in the rest of the array and swaps", the first link (excluding this question) tells me it's selection sort.
– Dukeling
Nov 21 '18 at 7:54
@Dukeling You'd be surprised (or perhaps not, by now) how often a Google search for the title question or the first line reveals the answer.
– Jim Mischel
Nov 21 '18 at 14:56
@Dukeling You'd be surprised (or perhaps not, by now) how often a Google search for the title question or the first line reveals the answer.
– Jim Mischel
Nov 21 '18 at 14:56
@JimMischel I know that all too well. In this case I thought it useful to point it out since it might not be the type of thing someone would typically expect to get an answer through Google for (it's not one of the many "how do I do X" questions).
– Dukeling
Nov 21 '18 at 17:42
@JimMischel I know that all too well. In this case I thought it useful to point it out since it might not be the type of thing someone would typically expect to get an answer through Google for (it's not one of the many "how do I do X" questions).
– Dukeling
Nov 21 '18 at 17:42
add a comment |
1 Answer
1
active
oldest
votes
It's called Selection sort. As you have already noticed, it selects the minimum element in the remaining list, swaps it in order and repeats until no more elements left.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53404549%2fwhat-type-of-array-sorting-algorithm-is-this%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
It's called Selection sort. As you have already noticed, it selects the minimum element in the remaining list, swaps it in order and repeats until no more elements left.
add a comment |
It's called Selection sort. As you have already noticed, it selects the minimum element in the remaining list, swaps it in order and repeats until no more elements left.
add a comment |
It's called Selection sort. As you have already noticed, it selects the minimum element in the remaining list, swaps it in order and repeats until no more elements left.
It's called Selection sort. As you have already noticed, it selects the minimum element in the remaining list, swaps it in order and repeats until no more elements left.
answered Nov 21 '18 at 2:56
merlynmerlyn
1,75011223
1,75011223
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53404549%2fwhat-type-of-array-sorting-algorithm-is-this%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
For what it's worth, if I do a Google search for "sorting algorithm goes through each index, then gets the minimum value in the rest of the array and swaps", the first link (excluding this question) tells me it's selection sort.
– Dukeling
Nov 21 '18 at 7:54
@Dukeling You'd be surprised (or perhaps not, by now) how often a Google search for the title question or the first line reveals the answer.
– Jim Mischel
Nov 21 '18 at 14:56
@JimMischel I know that all too well. In this case I thought it useful to point it out since it might not be the type of thing someone would typically expect to get an answer through Google for (it's not one of the many "how do I do X" questions).
– Dukeling
Nov 21 '18 at 17:42