-
Notifications
You must be signed in to change notification settings - Fork 52
/
Big_Sorting.cpp
79 lines (62 loc) · 1.44 KB
/
Big_Sorting.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
71
72
73
74
75
76
77
78
79
// Hackerrank - Big Sorting
#include <bits/stdc++.h>
using namespace std;
// Failed for many test-cases
// bool comp(string str1, string str2)
// {
// int n1 = str1.length(), n2 = str2.length();
// if (n1 < n2)
// return true;
// if (n2 < n1)
// return false;
// for (int i = 0; i < n1; i++)
// {
// if (str1[i] < str2[i])
// return true;
// else
// return false;
// }
// return false;
// }
// void sortlarge(string arr[], int n)
// {
// sort(arr, arr + n, comp);
// }
// int main()
// {
// int n;
// cin >> n;
// string s[n];
// for (int i = 0; i < n; i++)
// {
// cin >> s[i];
// }
// sortlarge(s, n);
// for (int i = 0; i < n; i++)
// {
// cout << s[i] << " ";
// }
// return 0;
// }
//- Using Lambda Function inside sort function.
int main()
{
int n;
cin >> n;
vector<string> unsorted(n);
for (int unsorted_i = 0; unsorted_i < n; unsorted_i++)
{
cin >> unsorted[unsorted_i];
}
sort(unsorted.begin(), unsorted.end(), [](const string &a, const string &b)
{
if (a.length() != b.length())
{
return a.length() < b.length();
}
return a < b;
});
for (auto x : unsorted)
cout << x << endl;
return 0;
}