码迷,mamicode.com
首页 > 编程语言 > 详细

查找字符串数组中的最长公共前缀

时间:2020-01-07 19:49:42      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:back   class   content   stc   init   字符串   get   func   val   

查找字符串数组中的最长公共前缀

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
</head>
<body>
  <script>
    var myarr = ["flaaower","flaaow","flaight"]
    function getLongestCommonPrefix(){
      myarr.sort();//按編碼排序
      if(myarr.length === 0) return ‘‘; // 如果是空數組直接返回‘‘
      var first = myarr[0], end = myarr[myarr.length-1];
      if(first === end || end.match(eval(/^ + first + /))){
        return first; //first包含于end返回first
      }
      for(var i =0;i<first.length;i++){
        if(first[i] !== end[i]){
          return first.substring(0,i);//匹配失敗時候返回相應字符串
        }
      }
    }
    console.log(getLongestCommonPrefix());  //‘fla‘
    </script>
</body>
</html>

查找字符串数组中的最长公共前缀

标签:back   class   content   stc   init   字符串   get   func   val   

原文地址:https://www.cnblogs.com/sugartang/p/12163171.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!