Computer Science, asked by karun4807, 1 year ago

चयन (Selection) सॉर्टिग क्या है?

Answers

Answered by Alyrock007
3

Answer:

In computer science, selection sort is a sorting algorithm, specifically an in-place comparison sort. It has O time complexity, making it inefficient on large lists, and generally performs worse than the similar insertion sort.

Worst complexity: n^2

Average complexity: n^2

Best complexity: n^2

Space complexity: 1

Method: Selection

Stable: No

Class: Comparison sort

Explanation:

follow me

Answered by realakv
0

Explanation:

The selection sort is a combination of searching and sorting. During each pass, the unsorted element with the smallest (or largest) value is moved to its proper position in the array. The number of times the sort passes through the array is one less than the number of items in the array.

Similar questions