博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
test cpp could not compiled on ubuntu use g++,i'll tried lateor on win platform
阅读量:5822 次
发布时间:2019-06-18

本文共 601 字,大约阅读时间需要 2 分钟。

#include <algorithmm>

#include <fstream>
#include <iostream>
#include <iterator>
#include <ostream>
#include <string>
#include <vector>
void read(std::istream& in, std::vector<std::string>& text)
{
    std::string line;
    while(std::getline(in,line))
        text.push_back(line);
}
int main(int argc,char* argv[])
{
    std::vector<std::string> text;
    if (argc<2)
        read(std::cin,text);
    else
    {
        std::ifstream in(argv[1]);
        if (not in)
        {
            std::perror(argv[1]);
            return EXIT_FAILURE;
        }
        read(in,text);
    }
    std::sort(text.begin(),text.end());
    std::copy(text.begin(),text.end(),std::ostream_iterator<std::string>(std::cout,"\n"));
}

转载地址:http://xibdx.baihongyu.com/

你可能感兴趣的文章
渐变色文字
查看>>
C++ 0X 新特性实例(比较常用的) (转)
查看>>
node生成自定义命令(yargs/commander)
查看>>
各种非算法模板
查看>>
node-express项目的搭建并通过mongoose操作MongoDB实现增删改查分页排序(四)
查看>>
如何创建Servlet
查看>>
.NET 设计规范--.NET约定、惯用法与模式-2.框架设计基础
查看>>
win7 64位+Oracle 11g 64位下使用 PL/SQL Developer 的解决办法
查看>>
BZOJ1997:[HNOI2010]PLANAR——题解
查看>>
BZOJ1014:[JSOI2008]火星人prefix——题解
查看>>
使用Unity3D引擎开发赛车游戏
查看>>
HTML5新手入门指南
查看>>
opennebula 开发记录
查看>>
ubuntu 修改hostname
查看>>
sql 内联,左联,右联,全联
查看>>
C++关于字符串的处理
查看>>
6、Web Service-拦截器
查看>>
Flask 源码流程,上下文管理
查看>>
stream classdesc serialVersionUID = -7218828885279815404, local class serialVersionUID = 1.
查看>>
ZAB与Paxos算法的联系与区别
查看>>