-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
longestincreasingsubsequencegreedy.go
43 lines (35 loc) · 1.46 KB
/
longestincreasingsubsequencegreedy.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
package dynamic
// LongestIncreasingSubsequenceGreedy is a function to find the longest increasing
// subsequence in a given array using a greedy approach.
// The dynamic programming approach is implemented alongside this one.
// Worst Case Time Complexity: O(nlogn)
// Auxiliary Space: O(n), where n is the length of the array(slice).
// Reference: https://www.geeksforgeeks.org/construction-of-longest-monotonically-increasing-subsequence-n-log-n/
func LongestIncreasingSubsequenceGreedy(nums []int) int {
longestIncreasingSubsequence := make([]int, 0)
for _, num := range nums {
// find the leftmost index in longestIncreasingSubsequence with value >= num
leftmostIndex := lowerBound(longestIncreasingSubsequence, num)
if leftmostIndex == len(longestIncreasingSubsequence) {
longestIncreasingSubsequence = append(longestIncreasingSubsequence, num)
} else {
longestIncreasingSubsequence[leftmostIndex] = num
}
}
return len(longestIncreasingSubsequence)
}
// Function to find the leftmost index in arr with value >= val, mimicking the inbuild lower_bound function in C++
// Time Complexity: O(logn)
// Auxiliary Space: O(1)
func lowerBound(arr []int, val int) int {
searchWindowLeft, searchWindowRight := 0, len(arr)-1
for searchWindowLeft <= searchWindowRight {
middle := (searchWindowLeft + searchWindowRight) / 2
if arr[middle] < val {
searchWindowLeft = middle + 1
} else {
searchWindowRight = middle - 1
}
}
return searchWindowRight + 1
}