what is selection sort in c with explanation?
Possible Answer:
In computer science, a selection sort is a sorting algorithm, specifically an in-place comparison sort. It has O (n 2) time complexity, making it inefficient on large lists, and generally performs worse than the similar insertion sort. Selection sort is noted for its simplicity, and it has ... - read more
Possible Answer:
Selection Sort in C is a Basic Sorting Technique. Selection sort program is used to sort elements in ascending order, It is based on comparison and swapping method. To start sorting, We need to consider the first element[A] as the - read more
Please vote if the answer you were given helped you or not, thats the best way to improve our algorithm. You can also submit an answer or check other resources.