Added definition or meaning of "Sort Function".

This commit is contained in:
Prasad Sawant 2020-05-15 12:29:47 +05:30 committed by GitHub
parent 153b904429
commit 03d30ca97f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,10 @@
Simple array of integers. With I/O functions, Sort Functions and Search Functions.
#Sort Function
The Sort function sorts the elements in the range in a particular order. The different types of sorting methods are Bubble Sort, Selection Sort, Merge Sort and Quick Sort. Bubble Sort repeatedly sorts the adjacent elements if they are in wrong order.
## Structure
```C