华为od查找重复代码

题目描述:小明负责维护项目下的代码,需要查找出重复代码,用以支撑后续的代码优化,请你帮助小明找出重复的代码。重复代码查找方法:以字符串形式给定两行代码(字符串长度 1 < length <= 100,由英文字母、数字和空格组成),找出两行代码中的最长公共子串。注: 如果不存在公共子串,返回空字符串

输入描述:

输入的参数text1, text2分别表示两行代码

输出描述:

输出任一最长公共子串

示例1

输入:

hello123world

hello123abc4

输出:

hello123

说明:

text1 = "hello123world", text2 = "hello123abc4", 最长的公共子串为 "hello123"

示例2

输入:

private_void_method

public_void_method

输出:

_void_method

说明:

text1 = "private_void_method", text2 = "public_void_method", 最长的公共子串为 "_void_method"

示例3

输入:

hiworld

hiweb

输出:

hiw

说明:

text1 = "hiworld", text2 = "hiweb", 最长的公共子串为 "hiw"

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);

        String a = in.nextLine();
        String b = in.nextLine();

        String x = a.length() < b.length() ? a : b;
        String y = a.length() > b.length() ? a : b;

        String l = "";
        for (int i = 0; i < x.length(); i++) {
            String substring = x.substring(0, x.length() - i);
            if (y.contains(substring)) {
                l = substring;
                break;
            }
        }
        for (int i = 0; i < x.length(); i++) {
            String substring = x.substring(i);
            if (y.contains(substring) && l.length() < substring.length()) {
                l = substring;
            }
        }
        System.out.println(l);
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值