博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode] 14. Longest Common Prefix
阅读量:5357 次
发布时间:2019-06-15

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

Write a function to find the longest common prefix string amongst an array of strings.

1 public class Solution { 2     public String longestCommonPrefix(String[] strs) { 3         if (strs == null || strs.length == 0) { 4             return ""; 5         } else if (strs.length < 2) { 6             return strs[0]; 7         } 8  9         String r = strs[0];10         int index = r.length();11         for (int i = 1; i < strs.length; i++) {12             int j = 0;13             for (; j < strs[i].length() && j < index; j++) {14                 if (strs[i].charAt(j) != r.charAt(j)) {15                     break;16                 }17             }18             if (j == 0) {19                 return "";20             }21             index = j;22         }23 24         return r.substring(0, index);25     }26 }

 

转载于:https://www.cnblogs.com/guoguo1020/p/6242900.html

你可能感兴趣的文章
【VS开发】ATL辅助COM组件开发
查看>>
FlatBuffers In Android
查看>>
《演说之禅》I &amp; II 读书笔记
查看>>
thinkphp3.2接入支付宝支付接口(PC端)
查看>>
response和request
查看>>
【转】在Eclipse中安装和使用TFS插件
查看>>
回到顶部浮窗设计
查看>>
C#中Monitor和Lock以及区别
查看>>
【NOIP2017】奶酪
查看>>
$ 一步一步学Matlab(3)——Matlab中的数据类型
查看>>
5.6.3.7 localeCompare() 方法
查看>>
Linux下好用的简单实用命令
查看>>
描绘应用程序级的信息
查看>>
poj2406-Power Strings
查看>>
php环境搭建脚本
查看>>
FTP主动模式与被动模式说明
查看>>
php 编译常见错误
查看>>
MES架构
查看>>
【Python3 爬虫】15_Fiddler抓包分析
查看>>
高性能JavaScript-JS脚本加载与执行对性能的影响
查看>>