• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

c++字符串去重

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

需求

  • 编写一个字符串过滤函数,若字符串出现多个相同的字符,将不是首次出现的字符过滤掉。

输入:"apache" 输出:"apche"
输入:"google" 输出:"gle"

  • 代码实现
	#include <iostream>
	#include <cassert>
	#include <memory.h>
	using namespace std;

	// 26个标志位 代表着每个字母出现与否 出现后置1
    bool g_flag[26];
    void stringFilter(const char *pInputString, long lInputLen, char *pOutputStr)
    {
        assert(pInputString != NULL);
        int i = 0 ;
        if(pInputString == NULL || lInputLen <= 1)
        {
            return;
        }
        const char *p = pInputString;
        while(*p != '\0')
        {
            if(g_flag[(*p - 'a')])
            {
                // 不是第一次出现 继续下一个
                p++;
            }
            else
            {
                // 将第一次出现的字母保存
                pOutputStr[i++] = *p;
                // 并将其代表的唯一标准位 置1
                g_flag[*p - 'a'] = 1;
            }
        }
        pOutputStr[i] = '\0';
    }
    int main(int argc, char const *argv[])
    {
        // memset将初始化指针
        memset(g_flag, 0, sizeof(g_flag));
        // 测试用
        char input[] = "google";
        char *output = new char[strlen(input) + 1];
        stringFilter(input, strlen(input), output);
        cout << output << endl;
        delete output;
        return 0;
    }

1.'a'和"a"是两个不同的东西,前者的类型是char,后者的类型是const char*


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap