-
Notifications
You must be signed in to change notification settings - Fork 0
/
3.cpp
74 lines (55 loc) · 1.4 KB
/
3.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
#include <iostream>
#include <queue>
#include <string>
using namespace std;
int main()
{
queue<string> words;
cout << "Before sorting:\n" << endl;
words.push("Apple");
cout << words.back() << endl;
words.push("Asus");
cout << words.back() << endl;
words.push("Gvido Van Rossum");
cout << words.back() << endl;
words.push("Bjarne Stroustrup");
cout << words.back() << endl;
words.push("Anders Hejlsberg");
cout << words.back() << endl;
words.push("James Gosling");
cout << words.back() << endl;
words.push("Google");
cout << words.back() << endl;
words.push("Gmail");
cout << words.back() << endl;
cout << endl;
queue<string> sorted_words;
queue<string> temp_words;
int size = words.size();
while (sorted_words.size() != size) {
int max = words.front().length();
while (words.size() != 0) {
if (words.front().length() > max) {
max = words.front().length();
}
temp_words.push(words.front());
words.pop();
}
while (temp_words.size() != 0) {
if (temp_words.front().length() == max) {
sorted_words.push(temp_words.front());
temp_words.pop();
}
else {
words.push(temp_words.front());
temp_words.pop();
}
}
}
cout << "After sorting:\n" << endl;
while (sorted_words.size() != 0) {
cout << sorted_words.front() << endl;
sorted_words.pop();
}
return 0;
}