selection sort implementation
mn3m-cs opened this issue · 3 comments
mn3m-cs commented
selection sort should be in-place, why you create an additional array to keep sorted elements in it?
pfrontera commented
I just created a PR about this tòpic. With this implementation, sorting is in-place swapping the values inside the same array.
pfrontera commented
Hi @egonSchiele I made this implementation after reading and learning from your book. Do you have any suggestions about the PR I did?