面试题:求最长非重复子序列

题目:求字符串的最长非重复子序列。比如字符串“dabaccdeff”,它的最长非重复子序列为“dabcef”

这道题目与 面试题35:第一个只出现一次的字符 非常相似。都可以通过对字符串球哈希来解。

View Code
#include<iostream>
#include <stack>  
#include<stdlib.h>
using namespace std;

void print(char *s,int len,char *hashtable);

int NoReplicatedSubstring(char *s,int len)
{    
    const int tablesize=256;
    char *hashtable=new char[tablesize];
    int i;
    int j;
    int count=0;
    //初始化hash[]
    for(i=0;i<tablesize;i++)
    {
        hashtable[i]='\0';
    }

    //第一次扫描
    for(i=0;i<len;i++)
    {
        hashtable[s[i]]=s[i];//将字符存入哈希表中
        //cout<<hashtable[s[i]];
    }

    /*    //方法0,按字符顺序输出字符串中的非重复子序列。
    for(i=0;i<tablesize;i++)
    {
        if(hashtable[i]!='\0')
        {
            cout<<hashtable[i];
        }
    }
    

    /* //方法1,按字符串顺序输出非重复子序列
    for(i=0;i<len;i++)
    {
        if(hashtable[s[i]]!='\0')
        {
            count++;
            cout<<hashtable[s[i]];
            hashtable[s[i]]='\0';
        }
    }
    */

    //输出方法2,按字符串逆序输出非重复子序列
    stack<char> c;//创建一个栈
    for(i=len-1;i>=0;i--)
    {
        if(hashtable[s[i]]!='\0')
        {
            c.push(hashtable[s[i]]);
            count++;
            hashtable[s[i]]='\0';
        }
    }
    //输出栈中的内容
    while(!c.empty())
    {
        cout<<c.top();
        c.pop();
    }

    cout<<endl;
    return count;
}

void main()
{
    char *s="dabaccdeff";
    int len=strlen(s);
    int count=NoReplicatedSubstring(s,len);
    system("pause");
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值