leetcode动态规划之子串问题

47 阅读1分钟

5. Longest Palindromic Substring

Given a string s, return the longest palindromic substring in s.

Example 1:

Input: s = "babad"
Output: "bab"
Explanation: "aba" is also a valid answer.

Example 2:

Input: s = "cbbd"
Output: "bb"

有三种解法:

  1. brute force: time complexity: O(n^3)
  2. dp
  3. 中心扩散法