answersLogoWhite

0


Best Answer

sorting means arranging a list of numbers or elements in an order (ascending or descending).

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

15y ago

Sort a list of names.

! Organize an MP3 library.

! Display Google PageRank results.

! List RSS news items in reverse chronological order.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

sorting algorithm is used to sort the database either in ascending or descending

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

The purpose of sorting data is to have everything in its place. That way the data can be easily found and examined without having to go back and forth between sheets.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is use of sorting algorithm?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is quicksort a stable sorting algorithm?

No, quicksort is not a stable sorting algorithm.


Is Quick Sort an in-place sorting algorithm?

Yes, Quick Sort is an in-place sorting algorithm.


Is bubble sort a stable sorting algorithm?

Yes, bubble sort is a stable sorting algorithm.


Is radix sort an in-place sorting algorithm?

Yes, radix sort is an in-place sorting algorithm.


How do you sort an array of numbers?

Use a sorting algorithm. There are a bewildering number of sorting algorithms, both stable and unstable. To sort numbers, an unstable sort suffices. The algorithm you use will depend on how many numbers need to be sorted (a small or a large set), however a hybrid algorithm (a combination of two or more algorithms) can cater for both. Introsort (unstable) and timsort (stable) are the two most common hybrid sorting algorithms.


When given a list of numbers what are the steps to put them greatest to least?

There are several different algorithms for sorting numbers by size. ?The steps to take will depend on which algorithm you wish to use.There are several different algorithms for sorting numbers by size. ?The steps to take will depend on which algorithm you wish to use.There are several different algorithms for sorting numbers by size. ?The steps to take will depend on which algorithm you wish to use.There are several different algorithms for sorting numbers by size. ?The steps to take will depend on which algorithm you wish to use.


How many Types of sorting algorithm?

ten types of soting algorithm


In a sorting algorithm the sort order can be changed by changing the operator?

In a sorting algorithm the sort order can be changed by changing the comparison operator.


Which sorting algorithm is considered the best for efficiency and performance?

The quicksort algorithm is considered the best for efficiency and performance among sorting algorithms.


What is the most efficient sorting algorithm available?

The most efficient sorting algorithm available is the Quick Sort algorithm. It has an average time complexity of O(n log n) and is widely used for its speed and efficiency in sorting large datasets.


What is the best sorting algorithm to use for an almost sorted array?

The best sorting algorithm to use for an almost sorted array is Insertion Sort. It is efficient for nearly sorted arrays because it only requires a small number of comparisons and swaps to sort the elements.


What is the time complexity of an algorithm that sorts an array of elements using a comparison-based sorting algorithm with a complexity of n log n?

The time complexity of sorting an array using a comparison-based sorting algorithm with a complexity of n log n is O(n log n).