Answer the question
In order to leave comments, you need to log in
How to deal with setting the programming style on Eclipse?
Good day. Unable to set up Eclipse. There is such a code.
#include <iostream>
#include <map>
#include <string>
#include <vector>
bool sortbycount(const pair <string, int> &a, const pair <string, int> &b) {
if (a.second > b.second)
return true;
if (a.second < b.second)
return false;
if (a.first < b.first)
return true;
return false;
}
int main() {
string w;
map <string, int> d;
while (cin >> w)
d[w]++;
for (pair <string,int> p : d) {
vector<pair <string,int> > res(d.size());
copy <d.begin(), d.end(), res.begin()>;
sort(res.begin(), res.end(), sortbycount);
for(auto r : res)
cout << r.first << " " << r.second << end;
}
}
Answer the question
In order to leave comments, you need to log in
Не совсем уверен насчет версии эклипс с++, но в случае версии для джавы, в настройках -> Java -> Code Style -> Formatter
Создаете новый профайл и настраиваете форматирование как вам угодна, где какие переносы, где какие пробелы, табуляции. Там есть примеры того, как будет выглядеть код с теми или иными настройками.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question