Merge pull request #529 from prasadsawant7/patch-1

Added definition or meaning of "Sort Function".
This commit is contained in:
Stepfen Shawn 2020-05-16 10:08:17 +08:00 committed by GitHub
commit 553b835163
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

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