Quicksort 1 - Partition
Problem Statement :
The previous challenges covered Insertion Sort, which is a simple and intuitive sorting algorithm with a running time of . In these next few challenges, we're covering a divide-and-conquer algorithm called Quicksort (also known as Partition Sort). This challenge is a modified version of the algorithm that only addresses partitioning. It is implemented as follows: Step 1: Divide Choose some pivot element, , and partition your unsorted array, , into three smaller arrays: , , and , where each element in , each element in , and each element in . Example In this challenge, the pivot will always be at , so the pivot is . is divided into , , and . Putting them all together, you get . There is a flexible checker that allows the elements of and to be in any order. For example, is valid as well. Given and , partition into , , and using the Divide instructions above. Return a 1-dimensional array containing each element in first, followed by each element in , followed by each element in . Function Description Complete the quickSort function in the editor below. quickSort has the following parameter(s): int arr[n]: is the pivot element Returns int[n]: an array of integers as described above Input Format The first line contains , the size of . The second line contains space-separated integers (the unsorted array). The first integer, , is the pivot element, .c
Solution :
Solution in C :
In C++ :
#include <map>
#include <set>
#include <list>
#include <cmath>
#include <ctime>
#include <deque>
#include <queue>
#include <stack>
#include <bitset>
#include <cstdio>
#include <vector>
#include <cstdlib>
#include <numeric>
#include <sstream>
#include <iostream>
#include <algorithm>
using namespace std;
/* Head ends here */
void partition(vector <int> ar)
{
vector<int> glist,llist;
long long i=1, p = ar[0];
while(i<ar.size())
{
if(ar[i]>p)
glist.push_back(ar[i]);
else
llist.push_back(ar[i]);
i++;
}
i=0;
while(i<llist.size())
{
ar[i] = llist[i];
cout<<llist[i]<<" ";
i++;
}
ar[i]=p;
cout<<p<<" ";
i=0;
while(i<glist.size())
{
ar[i+p] = glist[i];
if(i==glist.size()-1)
cout<<glist[i]<<endl;
else
cout<<glist[i]<<" ";
i++;
}
}
/* Tail starts here */
int main() {
vector <int> _ar;
int _ar_size;
cin >> _ar_size;
for(int _ar_i=0; _ar_i<_ar_size; _ar_i++) {
int _ar_tmp;
cin >> _ar_tmp;
_ar.push_back(_ar_tmp);
}
partition(_ar);
return 0;
}
In Java :
/* Head ends here */
import java.util.*;
public class Solution {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int n = in.nextInt();
int[] ar = new int[n];
for(int i=0;i<n;i++){
ar[i]=in.nextInt();
}
partition(ar);
printArray(ar);
}
static void printArray(int[] ar) {
for(int n: ar){
System.out.print(n+" ");
}
System.out.println("");
}
static void partition(int[] ar) {
int p=ar[0];
int[] copy=Arrays.copyOf(ar, ar.length);
int c=0;
for(int i=1;i<ar.length;i++){
if(copy[i]<=p){
ar[c]=copy[i];
c++;
}
}
ar[c]=p;
c++;
for(int j=0;j<ar.length;j++){
if(copy[j]>p){
ar[c]=copy[j];
c++;
}
}
}
}
In C :
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <assert.h>
/* Head ends here */
void partition(int ar_size, int * ar) {
int f,temp=ar[0],j=0,k=0,i;
int ar1[ar_size],ar2[ar_size];
for(i=0;i<ar_size;i++)
{
if(ar[i]<temp)
{
ar1[j]=ar[i];
j++;
}
if(ar[i]>temp)
{
ar2[k]=ar[i];
k++;
//printf("k=%d\n",k);
}
}
/* ar1[j]=temp;
j++;
for(i=0;i<k;i++)
{
ar1[j]=ar2[i];
j++;
}*/
// printf("j=%d\n",j);
for(i=0;i<j;i++)
printf("%d ",ar1[i]);
printf("%d ",temp);
for(i=0;i<k;i++)
printf("%d ",ar2[i]);
}
/* Tail starts here */
int main() {
int _ar_size;
scanf("%d", &_ar_size);
int _ar[_ar_size], _ar_i;
for(_ar_i = 0; _ar_i < _ar_size; _ar_i++) {
scanf("%d", &_ar[_ar_i]);
}
partition(_ar_size, _ar);
return 0;
}
In Python3 :
size = int(input())
array = input().split(" ")
arr = ['None'] * size
for i in range(size):
arr[i] = int(array[i])
p = arr[0]
less = [ ]
more = [ ]
for i in range(size):
if arr[i] < p:
less.append(arr[i])
else:
more.append(arr[i])
for j in range(len(less)):
print(less[j], end = " ")
for k in range(len(more)):
print(more[k], end = " ")
View More Similar Problems
Mr. X and His Shots
A cricket match is going to be held. The field is represented by a 1D plane. A cricketer, Mr. X has N favorite shots. Each shot has a particular range. The range of the ith shot is from Ai to Bi. That means his favorite shot can be anywhere in this range. Each player on the opposite team can field only in a particular range. Player i can field from Ci to Di. You are given the N favorite shots of M
View Solution →Jim and the Skyscrapers
Jim has invented a new flying object called HZ42. HZ42 is like a broom and can only fly horizontally, independent of the environment. One day, Jim started his flight from Dubai's highest skyscraper, traveled some distance and landed on another skyscraper of same height! So much fun! But unfortunately, new skyscrapers have been built recently. Let us describe the problem in one dimensional space
View Solution →Palindromic Subsets
Consider a lowercase English alphabetic letter character denoted by c. A shift operation on some c turns it into the next letter in the alphabet. For example, and ,shift(a) = b , shift(e) = f, shift(z) = a . Given a zero-indexed string, s, of n lowercase letters, perform q queries on s where each query takes one of the following two forms: 1 i j t: All letters in the inclusive range from i t
View Solution →Counting On a Tree
Taylor loves trees, and this new challenge has him stumped! Consider a tree, t, consisting of n nodes. Each node is numbered from 1 to n, and each node i has an integer, ci, attached to it. A query on tree t takes the form w x y z. To process a query, you must print the count of ordered pairs of integers ( i , j ) such that the following four conditions are all satisfied: the path from n
View Solution →Polynomial Division
Consider a sequence, c0, c1, . . . , cn-1 , and a polynomial of degree 1 defined as Q(x ) = a * x + b. You must perform q queries on the sequence, where each query is one of the following two types: 1 i x: Replace ci with x. 2 l r: Consider the polynomial and determine whether is divisible by over the field , where . In other words, check if there exists a polynomial with integer coefficie
View Solution →Costly Intervals
Given an array, your goal is to find, for each element, the largest subarray containing it whose cost is at least k. Specifically, let A = [A1, A2, . . . , An ] be an array of length n, and let be the subarray from index l to index r. Also, Let MAX( l, r ) be the largest number in Al. . . r. Let MIN( l, r ) be the smallest number in Al . . .r . Let OR( l , r ) be the bitwise OR of the
View Solution →