-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathleaders.cpp
70 lines (59 loc) · 1.4 KB
/
leaders.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
/*
Given an array of integers, the array may be sorted or unsorted
print leaders in the array
an element is called leader if there is nothing greater than or equal to the el on right of it
eg:
arr = [7, 10, 4, 3, 6, 5, 2]
op: 10 6 5 2
arr = [10, 20, 30]
op: 30
arr = [30, 20, 10]
op: 30 20 10
Naive sol:
Traverse through every el
For each el, we traverse on right side of it
If we find an el which is >= than curr el,
we say this number is not a leader
Time: O(n^2)
Eff sol:
This sol will print leaders from right to left
we traverse from the right side,
since last el will always be a leader
for each el we check if curr_el is > curr_leader
then curr element is also a leader
Time: theta(n)
Space: O(1) if reverse op is allowed
O(n) if normal op is allowed
*/
#include <iostream>
using namespace std;
void naive_leader(int arr[], int n)
{
for (int i = 0; i < n; i++)
{
bool isLeader = true;
for (int j = i + 1; j < n; j++)
{
if(arr[i] <= arr[j])
{
isLeader = true;
break;
}
}
if (isLeader == false)
cout << arr[i] << " ";
}
}
void eff_leader(int arr[], int n)
{
int curr_ldr = arr[n - 1];
cout << curr_ldr << " ";
for (int i = n - 2; i >= 0; i--)
{
if(curr_ldr < arr[i])
{
curr_ldr = arr[i];
cout << curr_ldr << " ";
}
}
}