-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathWiggleSortSln.cs
94 lines (87 loc) · 2.75 KB
/
WiggleSortSln.cs
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
/* ==============================================================================
* 功能描述:#324 WiggleSort
* 创 建 者:gz
* 创建日期:2017/5/31 14:02:01
* ==============================================================================*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WiggleSort
{
/// <summary>
/// WiggleSort
/// </summary>
public class WiggleSortSln
{
private static int[] _array;
public int[] WiggleSort(int[] array)
{
_array = array;
int median = findKThLargest(_array.Length / 2);
int left = 0, i = 0, right = _array.Length - 1;
while (i <= right)
{
if (_array[newIndex(i)] > median)
{
//put newIndex(i) at odd index(from 1, 3, to 5, ...)
swap(newIndex(left++), newIndex(i));
i++;
}
else if (_array[newIndex(i)] < median)
{
//put newIndex(i) at even index(max even index to little .... )
swap(newIndex(right--), newIndex(i)); //right--, so i relatively toward right 1 step
}
else
{
i++;
}
}
return _array;
}
private int newIndex(int index)
{
return (1 + 2 * index) % (_array.Length | 1);
}
private void swap(int i, int j)
{
int tmp = _array[i];
_array[i] = _array[j];
_array[j] = tmp;
}
//based on quick sort to find the Kth largest in _array
private int findKThLargest(int k)
{
int left = 0;
int right = _array.Length - 1;
while (true)
{
int pivotIndex = quickSort(left, right);
if (k == pivotIndex)
return _array[pivotIndex];
else if (k < pivotIndex)
right = pivotIndex - 1;
else
left = pivotIndex + 1;
}
}
private int quickSort(int lo, int hi)
{
int key = _array[lo];
while (lo < hi)
{
while (lo < hi && _array[hi] >= key)
hi--;
//hi is less than key, hi element moves to lo index
_array[lo] = _array[hi];
while (lo < hi && _array[lo] < key)
lo++;
//lo is bigger than key, lo element moves to hi index
_array[hi] = _array[lo];
}
_array[lo] = key;
return lo;
}
}
}