Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Created QuickSort.java #456

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 62 additions & 0 deletions Sorting/QuickSort.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
import java.util.Arrays;

class QuickSort {

// Partition function
static int partition(int[] arr, int low, int high) {

// Choose the pivot
int pivot = arr[high];

// Index of smaller element and indicates
// the right position of pivot found so far
int i = low - 1;

// Traverse arr[low..high] and move all smaller
// elements to the left side. Elements from low to
// i are smaller after every iteration
for (int j = low; j <= high - 1; j++) {
if (arr[j] < pivot) {
i++;
swap(arr, i, j);
}
}

// Move pivot after smaller elements and
// return its position
swap(arr, i + 1, high);
return i + 1;
}

// Swap function
static void swap(int[] arr, int i, int j) {
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}

// The QuickSort function implementation
static void quickSort(int[] arr, int low, int high) {
if (low < high) {

// pi is the partition return index of pivot
int pi = partition(arr, low, high);

// Recursion calls for smaller elements
// and greater or equals elements
quickSort(arr, low, pi - 1);
quickSort(arr, pi + 1, high);
}
}

public static void main(String[] args) {
int[] arr = {10, 7, 8, 9, 1, 5};
int n = arr.length;

quickSort(arr, 0, n - 1);

for (int val : arr) {
System.out.print(val + " ");
}
}
}