2018年3月11日
摘要: Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. Example: Example: 阅读全文
posted @ 2018-03-11 19:48 米兰达莫西 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 一,线性表 N个元素的有限序列,典型的表现为数组。 (A,B,C,D……) 典型操作: 1, InitList(&L) 构造一个空的线性表 2, DestroyList(&L) 销毁线性表 3, ClearList(&L) 将线性表重置为空表 4, ListEmpty(L) 判断线性表是否为空表 5 阅读全文
posted @ 2018-03-11 11:57 米兰达莫西 阅读(340) 评论(0) 推荐(0) 编辑