新书推介:《语义网技术体系》
作者:瞿裕忠,胡伟,程龚
   XML论坛     W3CHINA.ORG讨论区     计算机科学论坛     SOAChina论坛     Blog     开放翻译计划     新浪微博  
 
  • 首页
  • 登录
  • 注册
  • 软件下载
  • 资料下载
  • 核心成员
  • 帮助
  •   Add to Google

    >> 本版讨论高级C/C++编程、代码重构(Refactoring)、极限编程(XP)、泛型编程等话题
    [返回] 计算机科学论坛计算机技术与应用『 C/C++编程思想 』 → [讨论]关于对字符串中各单词按字母顺序排序的问题 查看新帖用户列表

      发表一个新主题  发表一个新投票  回复主题  (订阅本版) 您是本帖的第 3302 个阅读者浏览上一篇主题  刷新本主题   树形显示贴子 浏览下一篇主题
     * 贴子主题: [讨论]关于对字符串中各单词按字母顺序排序的问题 举报  打印  推荐  IE收藏夹 
       本主题类别:     
     tianzhaoling 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:5
      积分:68
      门派:XML.ORG.CN
      注册:2008/3/6

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给tianzhaoling发送一个短消息 把tianzhaoling加入好友 查看tianzhaoling的个人资料 搜索tianzhaoling在『 C/C++编程思想 』的所有贴子 引用回复这个贴子 回复这个贴子 查看tianzhaoling的博客楼主
    发贴心情 [讨论]关于对字符串中各单词按字母顺序排序的问题

    在网上看到一段代码,其作用是把一个字符串中各单词按字母表顺序进行排序,并在排序后输出,这段代码比自己写的要简短得多,有朋友还有更简洁的实现方法么?

    void main()
    {
        vector<char *> words;

     char source[] = "Most websites and web applications run smoothly and correctly as long as only one user e.g."
                  "the original developer or just a few users are visiting at a given time. But what happens if"
         "thousands of users access the website or web application at the same time?"
                  "Using Webserver Stress Tool you can simulate various load patterns for your"
         "webserver which will help you to find problems in your webserver set up With"
         "steadily increasing loads you are able to find out how much load you server can"
         "handle before serious problems arise";

     char *t = strtok(source," ");

     while(t) {
      t[0] = isupper(t[0]) ? tolower(t[0]) : t[0];
      words.push_back(t);
      t = strtok(NULL," ");
     }

     for(int i=0,p=words.size()-1,sub=words.size()-1; i<sub; ++i,--p)
     {
      for(int x=0; x<p; ++x)
      {
       if ( strcmp(words[x],words[x+1]) == 1 )
       {
        char *temp = words[x];
        words[x] = words[x+1];
        words[x+1] = temp;

       }
      }
     }

     copy(words.begin(),words.end(),ostream_iterator<char *>(cout,"\n"));
    }


       收藏   分享  
    顶(0)
      




    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2008/5/27 10:29:00
     
     GoogleAdSense
      
      
      等级:大一新生
      文章:1
      积分:50
      门派:无门无派
      院校:未填写
      注册:2007-01-01
    给Google AdSense发送一个短消息 把Google AdSense加入好友 查看Google AdSense的个人资料 搜索Google AdSense在『 C/C++编程思想 』的所有贴子 访问Google AdSense的主页 引用回复这个贴子 回复这个贴子 查看Google AdSense的博客广告
    2024/11/23 4:06:15

    本主题贴数1,分页: [1]

    管理选项修改tag | 锁定 | 解锁 | 提升 | 删除 | 移动 | 固顶 | 总固顶 | 奖励 | 惩罚 | 发布公告
    W3C Contributing Supporter! W 3 C h i n a ( since 2003 ) 旗 下 站 点
    苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
    46.875ms