当前位置 : 主页 > 编程语言 > c++ >

[C++]头文件排序

来源:互联网 收集:自由互联 发布时间:2021-06-23
using namespace std; using namespace std::placeholders; bool comP( string a, string b) { return a b;} int main(){ ofstream of; of.open( " headfile.h " ); ifstream ifile( " head_file.h " ); vector string head; string v; while (getline(ifile,
using namespace std;
using namespace std::placeholders;
bool comP(string &a, string& b) {
    return a < b;
}
int main()
{
    ofstream of;
    of.open("headfile.h");
    ifstream ifile("head_file.h");
    vector<string> head;
    string v;
    while (getline(ifile, v))
    {
        head.push_back(v);
    }
    sort(head.begin(), head.end(), comP);
    for (auto & h : head)
        of << h << endl;
    return 0;
}
网友评论