#include<stdio.h>
#include<string.h>
int t,n;
char str[100][101];
int searchMaxSubString(char *source){
int subStrLen=strlen(source),sourceStrLen=strlen(source);
int i,j;
bool foundMaxSubstr;
char subStr[101],revSubStr[101];
......................
阅读全部 | 2016年4月6日 09:58