1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/yargs/lib/levenshtein.js

59 lines
2.1 KiB
JavaScript
Raw Normal View History

2023-12-18 13:12:25 +08:00
/*
Copyright (c) 2011 Andrei Mackenzie
2023-12-28 23:41:32 +08:00
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2023-12-18 13:12:25 +08:00
*/
// levenshtein distance algorithm, pulled from Andrei Mackenzie's MIT licensed.
// gist, which can be found here: https://gist.github.com/andrei-m/982927
2023-12-28 23:41:32 +08:00
'use strict'
2023-12-18 13:12:25 +08:00
// Compute the edit distance between the two given strings
2023-12-28 23:41:32 +08:00
module.exports = function levenshtein (a, b) {
2023-12-18 13:12:25 +08:00
if (a.length === 0) return b.length
if (b.length === 0) return a.length
2023-12-28 23:41:32 +08:00
const matrix = []
2023-12-18 13:12:25 +08:00
// increment along the first column of each row
2023-12-28 23:41:32 +08:00
let i
2023-12-18 13:12:25 +08:00
for (i = 0; i <= b.length; i++) {
matrix[i] = [i]
}
// increment each column in the first row
2023-12-28 23:41:32 +08:00
let j
2023-12-18 13:12:25 +08:00
for (j = 0; j <= a.length; j++) {
matrix[0][j] = j
}
// Fill in the rest of the matrix
for (i = 1; i <= b.length; i++) {
for (j = 1; j <= a.length; j++) {
if (b.charAt(i - 1) === a.charAt(j - 1)) {
matrix[i][j] = matrix[i - 1][j - 1]
} else {
matrix[i][j] = Math.min(matrix[i - 1][j - 1] + 1, // substitution
2023-12-28 23:41:32 +08:00
Math.min(matrix[i][j - 1] + 1, // insertion
matrix[i - 1][j] + 1)) // deletion
2023-12-18 13:12:25 +08:00
}
}
}
return matrix[b.length][a.length]
}