From 267c6ee35ece1fa0f8b2bb8f5a232171f6e004f7 Mon Sep 17 00:00:00 2001 From: Anurag979593 <47553679+Anurag979593@users.noreply.github.com> Date: Thu, 31 Oct 2019 17:43:31 +0530 Subject: [PATCH 1/2] QuickSort.c --- QuickSort.c | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 QuickSort.c diff --git a/QuickSort.c b/QuickSort.c new file mode 100644 index 0000000..b31bc33 --- /dev/null +++ b/QuickSort.c @@ -0,0 +1,47 @@ +#include +int swap(int &x,int &y); +int Partition(int *a,int start,int end) +{ + int pivot=a[end]; + int pIndex=start; + for(int i=start;i Date: Wed, 28 Oct 2020 22:27:39 +0530 Subject: [PATCH 2/2] Update README 2019 Hactoberfest 2019.md --- README 2019 Hactoberfest 2019.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README 2019 Hactoberfest 2019.md b/README 2019 Hactoberfest 2019.md index 9c8e92f..9c1a566 100644 --- a/README 2019 Hactoberfest 2019.md +++ b/README 2019 Hactoberfest 2019.md @@ -1 +1,2 @@ This Repositery is open for developers to contribute into hacktoberfest 2019. Please visit http://iosd.tech for details of the organisation. +Collection of Algorithms.