Longest Substring Without Repeating Characters
摘要:
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for “abcabcbb” is “abc”, which the length is 3. For “bbbbb” the longest substring is “b”, with the length of 1. 1 public class Solution { 2 public i... 阅读全文
posted @ 2013-03-28 06:42 Step-BY-Step 阅读(279) 评论(0) 推荐(0) 编辑