C++ Primer 第11章 习题11.9
摘要:
//泛型算法中对容器元素从新排序的算法
//11.9.cpp
//读入文本文件
//统计长度不小于4的单词,并输出输入序列中不重复的单词
#include<iostream>
#include<fstream>
#include<vector>
#include<algorithm>
#include<string>
using namespace std; //用于将单词按长度排序的比较函数
bool isShorter(const string &s1,const string &s2)
{ return s1.s 阅读全文
posted @ 2012-03-01 18:33 1.曲待续 阅读(117) 评论(0) 推荐(0) 编辑