Giter Club home page Giter Club logo

Comments (2)

Liqiuyue9597 avatar Liqiuyue9597 commented on May 30, 2024
function versionSort(arr) {
   //1.
  // 先将版本号每一位放到数组保存
  var temp = arr.map(v => v.split("."))
  
  //利用sort属性排序传入规则函数
  function rule(a, b) {
    var j = 0
    var minLen = Math.min(a.length, b.length)
    
    while (j < minLen) {
      if (parseInt(a[j]) > parseInt(b[j])) {
        return 1
      } else if (parseInt(a[j]) < parseInt(b[j])) {
        return -1
      }
      j++
    }

    // 遇到1.5与1.5.5的情况上面无法判断
    if (minLen == a.length) {
      return -1
    } else if (minLen == b.length) {
      return 1
    }
  }

  // 将比较后的版本从数组形式转为.的形式
  return temp.sort(rule).map(v => v.join("."))
  
  //2.同样的道理,写法更简单
  function rule(a, b) {
    var arr1 = a.split(".")
    var arr2 = b.split(".")
    var i = 0
    while (true) {
      var s1 = arr1[i],
        s2 = arr2[i++]
      if (s1 === undefined || s2 === undefined) return arr1.length - arr2.length //1.5与1.5.5的情况
      if (s1 === s2) continue  //相等就继续循环
      return s1 - s2 
    }
  }
  return arr.sort(rule)
}

from front-end-interview.

Liqiuyue9597 avatar Liqiuyue9597 commented on May 30, 2024

遇到两次

from front-end-interview.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.