-
Notifications
You must be signed in to change notification settings - Fork 0
/
kthSmallest.cpp
52 lines (44 loc) · 1.14 KB
/
kthSmallest.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <bits/stdc++.h>
using namespace std;
int partition(int a[], int lb, int ub);
//returns kth smallest number
int kthSmallest(int a[],int lb,int ub,int k)
{
if(k>0 && k<=(ub-lb+1))
{
int q=partition(a,lb,ub);//returns position of pivot(index)
int pos=q-lb+1; //gives absolute position
if(k==pos)
return a[q];
else if(k<pos)
return kthSmallest(a,lb,q-1,k);
else
return kthSmallest(a,q+1,ub,k-pos);
}
}
int partition(int a[], int lb, int ub)
{
int pivot=a[ub],p=lb;
for(int j=lb;j<=(ub-1);j++)
{
if(a[j]<=pivot)
{
swap(a[p],a[j]); //sorts the array till left of pivot so as to count the absolute position of pivot
p++;
}
}
swap(a[p],a[ub]); //swaps pivot to its position if array was sorted in ascending order
return p;
}
int main()
{
int n,i,k;
cin>>n;
int a[n];
for(i=0;i<n;i++)
cin>>a[i];
cout<<"Enter the value of k"<<endl;
cin>>k;
cout<<"kth smalllest element is :"<<kthSmallest(a,0,n-1,k);
return 0;
}