09 2021 档案
摘要:快排算法 时间复杂度:O() 空间复杂度:O() public class QuickSort { public static void main(String[] args) { int[] num = {3,45,78,64,52,11,64,55,99,11,18}; System.out.p
阅读全文
摘要:题目 Given a string s, return the number of palindromic substrings in it. A string is a palindrome when it reads the same backward as forward. A substri
阅读全文
摘要:题目 Given a string s, return the longest palindromic substring in s. Example 1: Input: s = "babad" Output: "bab" Note: "aba" is also a valid answer. Ex
阅读全文
摘要:题目 Given an array of integers temperatures represents the daily temperatures, return an array answer such that answer[i] is the number of days you hav
阅读全文