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

Longest Substring Without Repeating Characters

时间:2015-03-30 12:54:25      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

求最长字串,要求字串中的所有字母不重复

思路

设定head和tail两个指针,tail每往前移动一格,便检查tail和head之间的所有字母是否与tail指向的字母重复,如果重复则将head指向重复的后一格
例如:
abcdefdc,当前head指向a,tail指向f,当tail指向下一个d的时候扫描head和tail之间的值,发现c后面的d和tail指向的d重复了,则将head调整为指向e。

  1. class Solution {
  2. public:
  3. int lengthOfLongestSubstring(string s) {
  4. if (s == "")
  5. return 0;
  6. if (s.size() == 1)
  7. {
  8. return 1;
  9. }
  10. int head = 0, tail = 1, length = 1;;
  11. for (; tail < s.size(); tail++)
  12. {
  13. for (size_t j = head; j < tail; j++)
  14. {
  15. if (s[j] == s[tail])
  16. {
  17. head = j + 1;
  18. break;
  19. }
  20. }
  21. length = (tail - head+1)>length ? (tail - head+1) : length;
  22. }
  23. return length;
  24. }
  25. };




Longest Substring Without Repeating Characters

标签:

原文地址:http://www.cnblogs.com/flyjameschen/p/4377499.html

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