本文介绍了如何在一串字符中显示最长的回文?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的一位朋友在ACHERON的技术访谈中遇到了这个问题。提问者要求显示给定字符串中最长的回文。

例如:nitinwearsottoeverytime - 没有空格。

其中nitin和otto是两个可能的回文,因为nitin是5个字符且很长,它必须显示出来。

执行此操作的代码是什么?

解释清除这个的逻辑!

解决方案



one of my friend encountered this question in ACHERON's technical interview.the questioner had asked to display the longest palindrome in a given string.
for example:"nitinwearsottoeverytime"-no spaces.
where nitin and otto are the two possible palindrome and since nitin is 5characters and long,it must bedisplayed.
what is the code to perform this?
do explain the logic to clear this!

解决方案



这篇关于如何在一串字符中显示最长的回文?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 20:00