摘要:
题目: Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique lo... 阅读全文
摘要:
1、类定义的基本格式:[类修饰符] class classname{ // 类提的内容,属性、构造函数和方法声明}类修饰符只能是public或无修饰符代码示例:public class Car{ // 汽车的属性 public String sign; // 汽车的标志 public S... 阅读全文