博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Cracking the coding interview--Q1.3
阅读量:5372 次
发布时间:2019-06-15

本文共 2042 字,大约阅读时间需要 6 分钟。

题目

原文:

Design an algorithm and write code to remove the duplicate characters in a string without using any additional buffer. NOTE: One or two additional variables are fine. An extra copy of the array is not.

FOLLOW UP

Write the test cases for this method.

译文:

设计算法并写出代码移除字符串中重复的字符,不能使用额外的缓存空间。注意: 可以使用额外的一个或两个变量,但不允许额外再开一个数组拷贝。

进一步地,

为你的程序写测试用例。

解答

这道题目其实是要你就地(in place)将字符串中重复字符移除。你可以向面试官问清楚, 不能使用额外的一份数组拷贝是指根本就不允许开一个数组,还是说可以开一个固定大小, 与问题规模(即字符串长度)无关的数组。

如果根本就不允许你再开一个数组,只能用额外的一到两个变量。那么,你可以依次访问 这个数组的每个元素,每访问一个,就将该元素到字符串结尾的元素中相同的元素去掉( 比如置为'\0').时间复杂度为O(n2 ),代码如下:

void removeDuplicate(char s[]){    int len = strlen(s);    if(len < 2) return;    int p = 0;    for(int i=0; i < len; ++i)    {        if(s[i] != '\0')        {            s[p++] = s[i];            for(int j=i+1; j < len; ++j)                if(s[j]==s[i])                    s[j] = '\0';        }    }    s[p] = '\0';}

如果可以开一个固定大小,与问题规模(即字符串长度)无关的数组,那么可以用一个数组来 表征每个字符的出现(假设是ASCII字符,则数组大小为256),这样的话只需要遍历一遍字符 串即可,时间复杂度O(n)。代码如下:

void removeDuplicate(char s[]){    int len = strlen(s);    if(len < 2) return;    bool c[256];    memset(c, 0, sizeof(c));    int p = 0;    for(int i=0; i < len; ++i)    {        if(!c[s[i]])        {            s[p++] = s[i];            c[s[i]] = true;        }    }    s[p] = '\0';    }

如果字符集更小一些,比如只是a-z,即字符串里只包含小写字母,那么使用一个int变量中 的每一位来表征每个字符的出现,一样可以在O(n)的时间里移除重复字符,而且还不需要额 外开一个数组。代码如下:

void removeDuplicate(char s[]){    int len = strlen(s);    if(len < 2) return;    int check = 0, p = 0;    for(int i=0; i < len; ++i)    {        int v = (int)(s[i]-'a');        if((check & (1 << v))==0)        {            s[p++] = s[i];            check |= (1 << v);        }    }    s[p] = '\0';}

测试用例:

  1. 不包含重复字符的字符串,比如:abcd
  2. 字符串全是重复字符,比如:aaaa
  3. 空字符串
  4. 重复字符连续出现,比如:aaabbb
  5. 重复字符不连续出现,比如:abababa

完整代码如下:

#include 
#include
using namespace std;string removeDuplicate1(string s){ int check = 0; int len = s.length(); if(len < 2) return s; string str = ""; for(int i=0; i

 

转载于:https://www.cnblogs.com/sooner/p/3179903.html

你可能感兴趣的文章
Struts2中自定义类型转换器
查看>>
java 用RGB生成图片动态命名
查看>>
.NET DotnetSpider--WebDrvierSpider(ajax动态加载的数据获取)
查看>>
HashMap中resize()剖析
查看>>
转:ubuntu搭建lamp环境
查看>>
linux用户管理
查看>>
day40 python MySQL【四】 之 【索引】【视图】【触发器】【存储过程】【函数】...
查看>>
Hack--兼容性测试
查看>>
字符编码问题
查看>>
android Process.killProcess 和 System.exit(0) 区别
查看>>
第六章 第一个Linux驱动程序: 统计单词个数
查看>>
python 分割字符。
查看>>
Hadoop2.x 关于日志文件位置
查看>>
SpringMVC02静态资源的访问
查看>>
一些前台功能代码实现
查看>>
Centos
查看>>
CSS层叠样式表的层叠是什么意思(转自知乎)
查看>>
似乎在梦中见过的样子 (KMP)
查看>>
Codeforces Round #503 (by SIS, Div. 2) D. The hat
查看>>
ECharts 使用
查看>>