码迷,mamicode.com
首页 > 其他好文 > 详细

给定一个字符串,找到包含该字符串所有字符的最短子串

时间:2015-04-15 19:42:41      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:算法   字符   豌豆荚   

这题是豌豆荚二面的一个算法题,和leetcode的某些题目类似。其思路是这样的

  1. 首先遍历一次字符串,求出字符串不同字符的数目
  2. 为每一个字符保存一个列表,记录该字符在字符串中出现的索引
  3. 记录待求字符串的首字母的索引start(初始值为0),结束索引end(初始值为length-1)
  4. 记录可能的待求字符串的首字母的索引值为pStart(初始值为0)
  5. 重新遍历字符串,当前索引为index
    1. 更新没有遍历的字符的数目,更新当前字符对应的索引列表。如果pStart处字符对应的列表长度大于1,则从索引列表中移出pStart,并将pStart加1,并重复该过程
    2. 如果index处字符是第一次出现,则将剩余字符数目减一
    3. 如果剩余字符数目为0时,且子字符串[pStart:index]比[start:end]短,则更新[start:end]为[pStart:index]
  6. 返回子字符串[start:end

    你会发现[start:end]为待求字符串。可以在纸上画画看

class Solution {
  String getShortestSubString(String str) {
    if (str == null || str.length() <= 1) {
      return str;
    }
    // 记录目标字符串的起始索引
    int start = 0, end = str.length() - 1;
    // 记录目标字符串的开始位置
    int pStart = 0;
    Map<Character, List<Integer>> map = new HashMap<Character, List<Integer>>();
    for (int index = 0; index < str.length(); index++) {
      map.put(str.charAt(index), null);
    }
    int remainingCharacter = map.keySet().size();
    for (int i = 0; i < str.length(); i++) {
      char c = str.charAt(i);
      if (map.get(c) == null) {
        List list = new LinkedList<Integer>();
        map.put(c, list);
        remainingCharacter--;
      }
      map.get(c).add(i);
      while (map.get(str.charAt(pStart)).size() > 1) {
        map.get(str.charAt(pStart)).remove(0);
        pStart++;
      }
      if (remainingCharacter == 0) {
        if (i - pStart < end - start) {

          start = pStart;
          end = i;
        }
      }
    }
    return str.substring(start, end + 1);
  }
}
class TestSolution {
  @Test
  public void testGetShortestSubString() {
    Solution solution = new Solution();
    Assert.assertEquals("dbccaaabcefg", solution.getShortestSubString("abcddbccaaabcefggf"));
  }
}

给定一个字符串,找到包含该字符串所有字符的最短子串

标签:算法   字符   豌豆荚   

原文地址:http://blog.csdn.net/jiewuyou/article/details/45061971

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!