-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDNFGrouping.go
52 lines (41 loc) · 1.07 KB
/
DNFGrouping.go
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
// "dutch national flag" regrouping
// given an int array and a pivot index, regroup elements into three successive groups
// in the array: elements lower than pivot, same as pivot and greater than the pivot
package main
import (
"fmt"
"errors"
)
func main () {
testcase := []int{3,2,1,6,5,4,9,8,4,6,5,1,4,3,2,5,1,6,8,5,4,9,8,7,9,8,7,6,8,7,4,3,6,5,4}
fmt.Println(DNFGrouping(testcase, 5))
}
func DNFGrouping(input []int, pivot int) ([]int, error) {
if pivot >= len(input) {
return nil, errors.New(fmt.Sprintf("DNFGrouping(): pivot (%d) outside valid range.", pivot))
}
// not in place - O(n) space
res := []int{}
low := []int{}
equal := []int{}
large := []int{}
pivotVal := input[pivot]
for _, v := range input {
if v < pivotVal {
low = append(low, v)
}
if v == pivotVal {
equal = append(equal, v)
}
if v > pivotVal {
large = append(large, v)
}
}
fmt.Println("\tLow:", low)
fmt.Println("\tEqual:", equal)
fmt.Println("\tLarge:", large)
res = append(res, low...)
res = append(res, equal...)
res = append(res, large...)
return res, nil
}