© Beipiaoshiguang 初级黑马 / 2015-4-6 00:10 / 6962 人查看 / 17 人回复 / 0 人收藏 转载请遵从CC协议 禁止商业使用本文
5黑马币
最佳答案这题,有个算法就是利用动态规划进行解答,有点难度。最差的算法就是通过遍历统计出每次的字符串,找到最大的字符串,然后输出。
package com.dsw.test;
public class CalculateMaxString {
public static void main(String[] args) {
String src = "abstractfistreamleoutput";
String tar = "maeetstuptuoestreamliftcartsba";
char [] srcCh = src.toCharArray();
char [] tarCh = tar.toCharArray();
int count = ...
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
评分
| |||||||