文件名称:Shortest-Palindrome
介绍说明--下载内容均来自于网络,请自行研究使用
给定一个字符串,你可以将它转换成一个回文通过添加字符在它前面。找到并返回最短的回文可以发现通过执行这个转换。 例如: 鉴于“aacecaaa”,返回“aaacecaaa”。 鉴于“abcd”,返回“dcbabcd”。-Given a string S, you are allowed to convert it to a palindrome by adding characters in front of it. Find and return the shortest palindrome you can find by performing this transformation.
For example:
Given aacecaaa , return aaacecaaa .
Given abcd , return dcbabcd .
For example:
Given aacecaaa , return aaacecaaa .
Given abcd , return dcbabcd .
(系统自动生成,下载前可以参看下载内容)
下载文件列表
Shortest Palindrome.CPP