热门标签
更多>
搜索结果
查询Tags标签: curMaxRightIndex,共有 2条记录-
马拉车算法寻找字符串最大回文串
#include <iostream> #include <string> using namespace std;class Solution { public:int getLongestPalindrome(string A, int n) {// write code herechar* s2 = (char*)malloc(2 * n + 1);int* tempLen = (int*)malloc((2 * n + 1) * 4);//int tempLen[2…
2021/9/3 22:35:42 人评论 次浏览 -
马拉车算法寻找字符串最大回文串
#include <iostream> #include <string> using namespace std;class Solution { public:int getLongestPalindrome(string A, int n) {// write code herechar* s2 = (char*)malloc(2 * n + 1);int* tempLen = (int*)malloc((2 * n + 1) * 4);//int tempLen[2…
2021/9/3 22:35:42 人评论 次浏览