字符串类面试题常见

1.左旋转字符串

题目描述:
        定义字符串的左旋转操作:把字符串前面的若干个字符移动到字符串的尾部。如把字符串 abcdef 左旋转 2 位得到字符串 cdefab。请实现字符串左旋转的函数,要求对长度为 n 的字符串操作的时间复杂度为 O(n),空间复杂度为 O(1)。

编程之美上有这样一个类似的问题,咱们先来看一下:
设计一个算法,把一个含有 N 个元素的数组循环右移 K 位,要求时间复杂度为 O(N), 且只允许使用两个附加变量。

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. /** 
  2.  * 交换两个字符 
  3.  * @param pStr 
  4.  * @param startIndex 
  5.  * @param endIndex 
  6.  */  
  7. public void swap(char[] pStr, int startIndex, int endIndex){  
  8.   
  9.     if(pStr != null || pStr.length > 0 || startIndex < endIndex){  
  10.         char temp = pStr[startIndex];  
  11.         pStr[startIndex] = pStr[endIndex];  
  12.         pStr[endIndex] = temp;  
  13.     }  
  14.       
  15. }  
  16.   
  17. /** 
  18.  * 逆转字符串中的每个字符 
  19.  * @param pStr 
  20.  * @param startIndex 
  21.  * @param endIndex 
  22.  */  
  23. public void reverseString(char[] pStr, int startIndex, int endIndex){  
  24.   
  25.     if(pStr != null || pStr.length > 0 || startIndex < endIndex){  
  26.         while(startIndex < endIndex){  
  27.             swap(pStr, startIndex, endIndex);  
  28.             startIndex++;  
  29.             endIndex--;  
  30.         }  
  31.     }  
  32.   
  33. }  
  34.   
  35. /** 
  36.  *  
  37.  * 做旋转字符串 
  38.  *  
  39.  * @param pStr 
  40.  *      需要处理的字符串 
  41.  * @param leftRotateSteps 
  42.  *      左转的步数 
  43.  */  
  44. public void leftRotate(char[] pStr, int leftRotateSteps){  
  45.   
  46.     if(pStr.length >= 0 || pStr != null ||   
  47.             leftRotateSteps > 0 || leftRotateSteps <= pStr.length-1){  
  48.         int xStartIndex = 0;  
  49.         int xEndIndex = leftRotateSteps - 1;  
  50.         int yStartIndex = leftRotateSteps;  
  51.         int yEndIndex = pStr.length - 1;  
  52.         reverseString(pStr, xStartIndex, xEndIndex);  
  53.         reverseString(pStr, yStartIndex, yEndIndex);  
  54.         reverseString(pStr, 0, pStr.length-1);  
  55.     }  
  56.   
  57. }   


2.替换空格

题目:请实现一个函数,把字符串中的每个空格替换成“%20”。例如输入“We are happy.”,则输出"We%20are%20happy"。


思路扩展题目:有两个排序的数组A1和A2,内存在A1的末尾有足够多的空余空间容纳A2。请实现一个函数,把A2中的所有数字插入到A1中并且所有的数字是排序的


3.字符串的排列

题目:输入一个字符串,打印出该字符串中字符的所有排列。例如,输入字符串abc, 则打印出由字符串a,b,c所能排列出的所有字符串abc,acb,bac,bca,cab和cba。

[java]  view plain copy
  1. public void swap(char[] str, int startIndex, int endIndex){  
  2.         if(startIndex == endIndex)  
  3.             return;  
  4.         char temp = str[startIndex];  
  5.         str[startIndex] = str[endIndex];  
  6.         str[endIndex] = temp;  
  7.     }  
  8.       
  9.     /** 
  10.      * 对字符串进行全排列 
  11.      * @param str 
  12.      * @param startIndex 
  13.      */  
  14.     public void permutation(char[] str, int startIndex){    
  15.         if(str == null || startIndex < 0 || startIndex > str.length){    
  16.             return;    
  17.         }    
  18.         if( startIndex == str.length ){    
  19.             System.out.println(new String(str));    
  20.         }else{    
  21.             for(int j = startIndex; j < str.length; j++){    
  22.                 //交换前缀,使之产生下一个前缀    
  23.                 swap(str, startIndex, j);  
  24.                 permutation(str, startIndex+1);    
  25.                 //将前缀换回来,继续做上一个的前缀排列.    
  26.                 swap(str, startIndex, j);  
  27.             }    
  28.         }    
  29.     }    

3.字符串的组合问题

基本思路:1.将当前选中的字符放入组合中:则在n-1个字符中选择m-1个字符
                  2.不把但前选中的字符放入组合中:则在剩下的n-1个字符中选择m个字符

[java]  view plain copy
  1. /** 
  2.      *  
  3.      * 字符串的组合问题 
  4.      * @param chs 
  5.      *  
  6.      */  
  7.     public static void combiantion(char chs[]){    
  8.         if(chs==null || chs.length==0){    
  9.             return ;    
  10.         }    
  11.         List<Character> list=new ArrayList();    
  12.         for(int i=1; i <= chs.length; i++){    
  13.             combine(chs,0,i,list);    
  14.         }    
  15.     }    
  16.       
  17.     /** 
  18.      *  
  19.      * @param cs 
  20.      *        处理的字符串 
  21.      * @param begin 
  22.      *        字符串开始坐标 
  23.      * @param number 
  24.      *        字符串长度 
  25.      * @param list 
  26.      */  
  27.     //从字符数组中第begin个字符开始挑选number个字符加入list中    
  28.     public static void combine(char[] cs, int begin, int number, List<Character> list){    
  29.         if(number==0){    
  30.             System.out.println(list.toString());    
  31.             return ;    
  32.         }    
  33.         if(begin==cs.length){    
  34.             return;    
  35.         }    
  36.         list.add(cs[begin]);    
  37.         //字符放入组合中,则在n-1个字符分中选择number-1个字符  
  38.         combine(cs,begin+1,number-1,list);  
  39.           
  40.         list.remove((Character)cs[begin]);    
  41.         //字符不放入组合中,则在n-1个字符中选择number个字符  
  42.         combine(cs,begin+1,number,list);    
  43.     }    



4.字符串包含问题

题目:假设这有一个各种字母组成的字符串A,和另一个字符串B,字符串里B的字母相对少一些。什么方法能最快查出所有小字符串B里的字母在大字符串A里都有?
比如, 如果是下面两个字符串:
String 1: ABCDEFGHLMNOPQRS
String 2:DCGSRQPO
答案是true

算法设计思想:因为只存在大写字母,故只需定义一个存储26个不同字母的HashMap进行存储。时间复制度为O(m+n)其中m,n为两个字符串的长度

[java]  view plain copy
  1. /** 
  2.  * 判断是否短字符串包含于长字符串 
  3.  * @param longStr 
  4.  * @param shortStr 
  5.  * @return 
  6.  */  
  7. public boolean isContain(String longStr, String shortStr){  
  8.   
  9.     //判断字符串是否符合规范!  
  10.     if(longStr == null || shortStr == null ||   
  11.             shortStr.length() <= 0 || longStr.length() <= shortStr.length())  
  12.         return false;  
  13.       
  14.     //设置26个字母  
  15.     Map strMap = new HashMap(26);  
  16.     int num = 0;  
  17.       
  18.     //用HashMap记录短字符串中出现的所有字符,并用num记录出现的个数  
  19.     for(int i = 0; i < shortStr.length(); i++){  
  20.         if(!strMap.containsKey(shortStr.charAt(i))){  
  21.             strMap.put(shortStr.charAt(i), 1);  
  22.             num++;  
  23.         }  
  24.     }  
  25.       
  26.     //统计HashMap中是否有存储长字符串中的字符。  
  27.     for(int i = 0; i < longStr.length(); i++){  
  28.         if(strMap.containsKey(longStr.charAt(i))){  
  29.                               num--;  
  30.         }  
  31.     }  
  32.       
  33.     //如果num重新置为0,表示包含  
  34.     if(num == 0){  
  35.         return true;  
  36.     }else{  
  37.         return false;  
  38.     }  
  39.       
  40. }  





思路扩展1:在字符串中查找子串

题目描述:
给定一个字符串 A,要求在 A 中查找一个子串 B。
如 A="ABCDF",要你在 A 中查找子串 B=“CD”。


思路扩展2:字符串匹配问题

题目描述:
假设两个字符串中所含有的字符和个数都相同我们就叫这两个字符串匹配,
比如:abcda 和 adabc,
由于出现的字符个数都是相同,只是顺序不同,所以这两个字符串是匹配的。



5.在一个字符串中找到第一个只出现一次的字符

如输入 abaccdeff,则输出 b


[java]  view plain copy
  1. public char firstNotRepeatChar(String pStr){  
  2.   
  3.     if(pStr == null || pStr.length() <= 0)  
  4.         return '\0';  
  5.   
  6.     Map<Character, Integer> charMap = new HashMap<Character, Integer>(256);  
  7.     for(int i = 0; i < pStr.length(); i++){  
  8.         char c = pStr.charAt(i);  
  9.         if(charMap.containsKey(c)){  
  10.             int num = charMap.get(c);  
  11.             charMap.put(c, ++num);  
  12.         }else{  
  13.             charMap.put(c, 1);  
  14.         }  
  15.     }  
  16.     Character result = null;  
  17.     //注意这种递归方式非常新颖  
  18.     //但是递归效果近似到序!  
  19.     for(Character key: charMap.keySet()){  
  20.         Integer value = charMap.get(key);  
  21.         if(value == 1)  
  22.             result = key;  
  23.     }  
  24.   
  25.     return result;  
  26. }  



6.字符串转换为整数

题目:输入一个表示整数的字符串,把该字符串转换成整数并输出。
例如输入字符串"345",则输出整数 345。



7.字符串拷贝

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值