zoukankan      html  css  js  c++  java
  • 华为2014机试字符串压缩

    华为2014校园招聘的机试题目
    通过键盘输入一串小写字母(a~z)组成的字符串。请编写一个字符串压缩程序,将字符串中连续出席的重复字母进行压缩,并输出压缩后的字符串。
    压缩规则:
        1、仅压缩连续重复出现的字符。比如字符串"abcbc"由于无连续重复字符,压缩后的字符串还是"abcbc"。
        2、压缩字段的格式为"字符重复的次数+字符"。例如:字符串"xxxyyyyyyz"压缩后就成为"3x6yz"。
    要求实现函数: 
         void stringZip(const char *pInputStr, long lInputLen, char *pOutputStr);
        输入pInputStr:  输入字符串lInputLen:  输入字符串长度
        输出 pOutputStr: 输出字符串,空间已经开辟好,与输入字符串等长;
    注意:只需要完成该函数功能算法,中间不需要有任何IO的输入输出
    示例 
        输入:“cccddecc”   输出:“3c2de2c”
        输入:“adef”     输出:“adef”

        输入:“pppppppp” 输出:“8p”

    #include<iostream>
    using namespace std;
    void stringZip(const char *pInputStr, long lInputLen, char *pOutputStr)
    {
         int count = 0;
         int index = 0;
         int num = 1;
         int i = 0;
         while(i<lInputLen)
         {
              count = 0;
              for(int j = i;*(pInputStr+i)==*(pInputStr+j);j++)
              {
                 count++;
              }
              num = count;//下面计算位数的时候count被破坏 
              if(count==1)
              {
                 pOutputStr[index++] = pInputStr[i];
              }
              else if(count>1)
              {
                int weishu[20];
                for(int k = 0;k<20;k++)
                weishu[k] = 0; 
                int index_weishu = 0;
                while(count!=0)
                {
                    weishu[index_weishu++] = count%10;
                    count /= 10;
                }
                for(int k = index_weishu-1;k>=0;k--)
                {
                    pOutputStr[index++] = weishu[k]+'0'; 
                } 
                pOutputStr[index++] = pInputStr[i];
              }
              i+=num;
         }
         pOutputStr[index] = '';
    } 
    int main(void)
    {
        char array[] = "ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc cooooddeppppppppooooodhvcuidvbusdcvudhvufdvucfihyvbivvccsdcdddddd";
        char* a = array;
        char* s = (char*)(malloc(strlen(a)));
        stringZip(a,strlen(a),s);
        printf("%s
    ",a);
        printf("%s
    ",s);
        system("pause");
        return 0;
    }
    


  • 相关阅读:
    SOA精华的内容和实用的知识
    众多SEO专家集体盛赞
    黑客大曝光:VoIP安全机密与解决方案
    博文视点大讲堂41期SEO难点之网站内部链接结构
    TransactSQL管理与开发实例精粹
    千万不要错过云计算兴起的时代
    《海量数据库解决方案》之位图索引的结构和特征
    Oracle开发艺术
    Android应用程序的开发
    BizTalk Accelerator for HL7医疗行业消息路由处理机制
  • 原文地址:https://www.cnblogs.com/sunp823/p/5601428.html
Copyright © 2011-2022 走看看