Computer Science, asked by srividyaavuthu2020, 8 months ago

What type of sort is this? Take the current value and
compare it with all previous set of sorted values in
an array and place the current value.​

Answers

Answered by Anonymous
5

Answer:

Sorting Algorithms

A Sorting Algorithm is used to rearrange a given array or list elements according to a comparison operator on the elements. The comparison operator is used to decide the new order of element in the respective data structure.

For example: The below list of characters is sorted in increasing order of their ASCII values. That is, the character with lesser ASCII value will be placed first than the character with higher ASCII value.

Explanation:

Similar questions