Skip to content

Instantly share code, notes, and snippets.

@vivan188
Created March 19, 2021 11:45
Show Gist options
  • Save vivan188/15c250b8225f2076c5a3c2b110d2061a to your computer and use it in GitHub Desktop.
Save vivan188/15c250b8225f2076c5a3c2b110d2061a to your computer and use it in GitHub Desktop.
LIS_BruteForce
#include <bits/stdc++.h>
int _lis( int arr[], int n, int *max_ref)
{
if (n == 1)
return 1;
int res, max_ending_here = 1;
for (int i = 1; i < n; i++)
{
res = _lis(arr, i, max_ref);
if (arr[i-1] < arr[n-1] && res + 1 > max_ending_here)
max_ending_here = res + 1;
}
if (*max_ref < max_ending_here)
*max_ref = max_ending_here;
return max_ending_here;
}
int lis(int arr[], int n)
{
int max = 1;
_lis( arr, n, &max );
// returns max
return max;
}
int main()
{
int arr[] = { 10, 22, 9, 33, 21, 50, 41, 60 };
int n = sizeof(arr)/sizeof(arr[0]);
printf("Length of lis is %dn",
lis( arr, n ));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment