Given a text string, find Longest Repeated Substring in the text. If there are more than one Longest Repeated Substrings, get any one of them.
Longest Repeated Substring in GEEKSFORGEEKS is: GEEKS Longest Repeated Substring in AAAAAAAAAA is: AAAAAAAAA Longest Repeated Substring in ABCDEFG is: No repeated substring Longest Repeated Substring in ABABABA is: ABABA Longest Repeated Substring in ATCGATCGA is: ATCGA Longest Repeated Substring in banana is: ana Longest Repeated Substring in abcpqrabpqpq is: ab (pq is another LRS here)
Solution 1:
Using Suffix Array. Time complexity: O(nlogn), Space complexity: O(n)
// return the longest repeated string in s public String lrs(String s) { // form the N suffixes int N = s.length(); String[] suffixes = new String[N]; for (int i = 0; i < N; i++) { suffixes[i] = s.substring(i, N); } // sort them Arrays.sort(suffixes); // find longest repeated substring by comparing adjacent sorted suffixes String lrs = ""; for (int i = 0; i < N - 1; i++) { String x = lcp(suffixes[i], suffixes[i+1]); if (x.length() > lrs.length()) lrs = x; } return lrs; } // return the longest common prefix of s and t public String lcp(String s, String t) { int n = Math.min(s.length(), t.length()); for (int i = 0; i < n; i++) { if (s.charAt(i) != t.charAt(i)) return s.substring(0, i); } return s.substring(0, n); }
Reference:
http://introcs.cs.princeton.edu/java/42sort/LRS.java.html
Solution 2:
Using Suffix Tree. Time complexity: O(n), Space complexity: O(n)
Reference:
http://www.geeksforgeeks.org/suffix-tree-application-3-longest-repeated-substring/
相关推荐
题目"159-longest-substring-with-at-most-two-distinct"是LeetCode算法题目之一。本题要求解的是找出在给定字符串中,具有最多两个不同字符的最长子串的长度。 2. 题目要求: - 输入是一个字符串,保证只包含...
c c语言_leetcode 0003_longest_substring_without_repeat.zip
java入门 java_leetcode题解之003_Longest_Substring_Without_Repeating
本题涉及的核心知识点是“最长公共子串”(Longest Common Substring),这是一个经典的动态规划问题。以下将详细解析这个问题及其解决方案。 首先,我们需要理解“最长公共子串”的概念。在两个给定的字符串s1和s2...
在C语言的学习过程中,解决leetcode上的算法问题是一个重要的实践环节。其中,第3题“无重复字符的最长子串”是一个考察字符串处理和滑动窗口技术的经典问题。为了解决这一问题,我们需要对C语言有基础的掌握,并...
2. 无重复字符的最长子串(Longest Substring Without Repeating Characters):这是一个在LeetCode上颇受欢迎的算法问题,旨在找出一个字符串中不包含重复字符的最长子串,并返回该子串的长度。 3. JavaScript (JS...
c c语言_leetcode 0005_longest_palindromic_substring.zip
java入门 java_leetcode题解之005_Longest_Palindromic_Substring
本篇文章针对LeetCode题库中的第5题“最长回文子串(Longest Palindromic Substring)”给出C语言的解决方案。回文串是一个正读和反读都一样的字符串,在解决这个问题时,我们需要找到输入字符串中最长的回文子串。 ...
在LeetCode题库中,解决“最长回文子串”问题是一道经典的算法题目,它要求程序员设计一个算法来找出字符串中无序的最长回文子串。回文是指一个字符串正读和反读都相同的字符串,例如“madam”或者“racecar”。...
在IT领域,字符串处理是常见的任务之一,尤其是在编程语言如Java中。...在压缩包文件"longest-non-repeated-substring-master"中,可能包含了这个算法的详细实现和其他相关测试案例,可以作为学习和研究的参考。
答案LeetCode-Longest_Substring_Without_Repeating_Characters 这是LeetCode上“最长子串无重复字符”问题的解决方案。 问题描述:给定一个字符串,求没有重复字符的最长子串的长度。 示例 1:输入:“abcabcbb” ...
Longest-Palindromic-Substring(最长回文子串) 给定一个字符串 s,找到 s 中最长的回文子串。你可以假设 s 的最大长度为 1000。 Sample 1 输入: "babad" 输出: "bab" 注意: "aba" 也是一个有效答案。 Sample 2 输入...
Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. Example: Input: "babad" Output: "bab" Note: "aba" is also a valid answer. ...
Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the length is 3. Given "bbbbb", the answer is "b", with...
Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. Java AC 版本
标题“POJ2533-Longest Ordered Subsequence”是指北京大学在线判题系统POJ上的一道编程题目,其核心任务是寻找一个序列中最长的有序子序列。描述中的“解题报告+AC代码”表明这个压缩包包含了对这道问题的解答思路...
北大POJ2533-Longest Ordered Subsequence【O(nlogn)】
数据结构问题:“最长回文子串问题”(Longest Palindromic Substring),详细解法和代码实现; 数据结构问题:“最长回文子串问题”(Longest Palindromic Substring),详细解法和代码实现; 数据结构问题:“最长...
leetcode 答案最长子串 来自 leetcode.com 的问题。 描述: 给定一个字符串,找出没有重复字符的最长子字符串的长度。 示例 1: 输入:“abcabcbb” 输出:3 解释:答案是“abc”,长度为3。