设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 1379|回复: 1
打印 上一主题 下一主题

請高手賜教

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-4 00:24:43 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
怎樣改寫才可以使得程序可以檢測多次出現的相同編號,并且对这个行編號只插入一次


#include <iostream>
#include <vector>
#include <algorithm>
#include <iterator>
#include <string>
#include <map>
#include <cctype>

using namespace std;

vector<string> split(const string&s)     //分割單詞
{
    vector<string> ret;
    typedef string::size_type string_size;
    string_size i=0;
   
    while(i!=s.size()){
        while(i!=s.size() && isspace(s[i]))
          ++i;
        
        string_size j=i;
        while(j!=s.size() && !isspace(s[j]))
          ++j;
         
        if(i!=j){
          ret.push_back(s.substr(i,j-i));
          i=j;
        }
    }      
    return ret;
}




map<string,vector<int> > xref(istream& in,vector<string> find_words(const
2#
发表于 2009-11-4 12:05:03 | 只看该作者
路过....
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-19 11:17 , Processed in 0.110218 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表