From 03d30ca97f9e76dbf0f01a4fd5a337d9a1a683d4 Mon Sep 17 00:00:00 2001 From: Prasad Sawant <58025997+prasadsawant7@users.noreply.github.com> Date: Fri, 15 May 2020 12:29:47 +0530 Subject: [PATCH] Added definition or meaning of "Sort Function". --- data_structures/Array/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/data_structures/Array/README.md b/data_structures/Array/README.md index bb0374136..5534aae9c 100644 --- a/data_structures/Array/README.md +++ b/data_structures/Array/README.md @@ -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