-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathselectionrank.cpp
108 lines (85 loc) · 2.33 KB
/
selectionrank.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
// {"category": "Algorithm", "notes": "Find N-th smallest (Selection rank)"}
#include <SDKDDKVer.h>
#include <stdio.h>
#include <tchar.h>
#include <iostream>
#include <Windows.h>
using namespace std;
//------------------------------------------------------------------------------
//
// Find N-th smallest element in an array.
//
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//
// Implementation
//
//------------------------------------------------------------------------------
int Partition(int array[], int left, int right, int pivotValue)
{
while (left <= right)
{
while (left <= right && array[left] <= pivotValue)
{
++left;
}
while (left <= right && array[right] > pivotValue)
{
--right;
}
if (left < right)
{
swap(array[left], array[right]);
}
}
return left - 1;
}
int FindMax(int array[], int left, int right)
{
int maxValue = array[left];
for (int i = left + 1; i <= right; i++)
{
if (array[i] > maxValue)
{
maxValue = array[i];
}
}
return maxValue;
}
int SelectionRank(int array[], int left, int right, int rank)
{
int length = right - left + 1;
if (length <= 0 || rank <= 0 || rank > length)
{
return -1;
}
int pivotValue = array[left + (rand() % length)];
int leftEnd = Partition(array, left, right, pivotValue);
int leftSize = leftEnd - left + 1;
if (leftSize == rank)
{
return FindMax(array, left, leftEnd);
}
if (leftSize > rank)
{
return SelectionRank(array, left, leftEnd, rank);
}
return SelectionRank(array, leftEnd + 1, right, rank - leftSize);
}
//------------------------------------------------------------------------------
//
// Demo execution
//
//------------------------------------------------------------------------------
int _tmain(int argc, _TCHAR* argv[])
{
int result = 0;
for (int rank = 1; result >= 0; rank++)
{
int array[] = { 41, 67, 34, 0, 69, 24, 78, 58, 62, 64, 5, 45, 81, 27 };
result = SelectionRank(array, 0, ARRAYSIZE(array) - 1, rank);
cout << result << " ";
}
cout << endl;
return 0;
}