博客
关于我
【LeetCode】[14] 最长公共前缀
阅读量:105 次
发布时间:2019-02-26

本文共 1288 字,大约阅读时间需要 4 分钟。

?????????????????????????????????????????????O(n*m)???n????????m??????????????????????????????

?????????

  • ???????????????????????????????????????????

  • ????????????????????n_min??????????????

  • ???????????????????????????????????????????????????????????????????

  • ????????????????????????

  • ????

    public class Solution {    public String longestCommonPrefix(String[] strs) {        if (strs.length == 0) {            return "";        }        if (strs.length == 1) {            return strs[0];        }                int n_min = Integer.MAX_VALUE;        for (String s : strs) {            if (s.length() < n_min) {                n_min = s.length();            }        }                StringBuilder sb = new StringBuilder();        for (int n = 0; n < n_min; n++) {            char c = strs[0].charAt(n);            for (int i = 1; i < strs.length; i++) {                if (strs[i].length() <= n || strs[i].charAt(n) != c) {                    return sb.toString();                }            }            sb.append(c);        }        return sb.toString();    }}

    ????

    • ??????????????????????????????????????
    • ?????????????????????????n_min?????????????
    • ????????????????????????????????????????????????????
    • ???????????????????????????????????????????????

    ??????????????????????????????????????

    转载地址:http://asik.baihongyu.com/

    你可能感兴趣的文章
    PowerShell 批量签入SharePoint Document Library中的文件
    查看>>
    Powershell 自定义对象小技巧
    查看>>
    pytorch从预训练权重加载完全相同的层
    查看>>
    PowerShell~发布你的mvc网站
    查看>>
    PowerShell使用详解
    查看>>
    Powershell制作Windows安装U盘
    查看>>
    powershell命令
    查看>>
    Powershell如何查看本地公网IP
    查看>>
    pytorch从csv加载自定义数据模板
    查看>>
    powershell对txt文件的服务器进行ping操作
    查看>>
    powershell常用
    查看>>
    PowerShell操作XML遇到的问题
    查看>>
    PowerShell攻击工具Empire实战
    查看>>
    PowerShell攻击工具Nishang实战
    查看>>
    PowerShell攻击工具PowerSploit实战
    查看>>
    Powershell管理系列(四)Lync server 2013 批量启用语音及分配分机号
    查看>>
    PowerShell脚本运行完 不要马上关闭用什么命令可以停留窗口窗口
    查看>>
    PowerShell远程连接到Windows
    查看>>
    power(8) identity
    查看>>
    POW的重力之美
    查看>>