-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path27_Question.cpp
More file actions
48 lines (40 loc) · 1.35 KB
/
27_Question.cpp
File metadata and controls
48 lines (40 loc) · 1.35 KB
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
// Given a string, find the second most frequent character in it. Expected time complexity is O(n) where n is the length of the input string.
// Examples:
// Input: str = "aabababa";
// Output: Second most frequent character is 'b'
// Input: str = "abcd";
// Output: No Second most frequent character
// A simple solution is to start from the first character, count its occurrences, then second character and so on.
// While counting these occurrence keep track of max and second max. Time complexity of this solution is O(n2).
// We can solve this problem in O(n) time using a count array with size equal to 256 (Assuming characters are stored in ASCII format).
// Following is C implementation of the approach.
#include<iostream>
#include<vector>
#include<climits>
using namespace std;
char secondFreq(string& s){
vector<int> alpha(256,0);
int max_freq = 0;
int second = 0;
for(auto ch : s){
alpha[ch]++;
}
for(int i = 0; i < 256; i++){
if(alpha[i] > 0){
if(alpha[i] > alpha[max_freq]){
second = max_freq;
max_freq = i;
}
else if(alpha[i] > alpha[second] && alpha[i] != alpha[max_freq]){
second = i;
}
}
}
return (char)second;
}
int main(){
string str;
cin>>str;
cout<<secondFreq(str);
return 0;
}