溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Fuse.js模糊查詢算法怎么使用

發(fā)布時(shí)間:2023-03-13 11:50:06 來(lái)源:億速云 閱讀:130 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹“Fuse.js模糊查詢算法怎么使用”,在日常操作中,相信很多人在Fuse.js模糊查詢算法怎么使用問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”Fuse.js模糊查詢算法怎么使用”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

Fuse.js是什么

最近在項(xiàng)目里用到了Fuse.js做模糊查詢,便對(duì)這個(gè)算法起了點(diǎn)好奇心,翻了翻源碼。

Fuse.js 是一個(gè) JavaScript 庫(kù),用于執(zhí)行模糊字符串搜索。它通過(guò)比較搜索字符串與目標(biāo)字符串的相似度來(lái)找到最佳匹配。

Fuse.js 使用一種稱為 Bitap 算法的搜索算法來(lái)找到最佳匹配。Bitap 算法是一種用于字符串搜索的二進(jìn)制算法,它通過(guò)比較二進(jìn)制位來(lái)判斷字符串是否匹配,其中模式可以與目標(biāo)有所不同。該算法采用位向量數(shù)據(jù)結(jié)構(gòu)和按位比較以實(shí)現(xiàn)字符串匹配。

核心算法Bitap

Bitap算法是fuse.js中用于實(shí)現(xiàn)模糊搜索的核心算法之一,其主要思路是利用位運(yùn)算來(lái)計(jì)算模式串和目標(biāo)串之間的相似度。具體來(lái)說(shuō),Bitap算法首先將模式串轉(zhuǎn)換為二進(jìn)制掩碼,并利用位運(yùn)算來(lái)計(jì)算模式串和目標(biāo)串之間的相似度,然后采用一些啟發(fā)式策略來(lái)提高算法的準(zhǔn)確性和效率。

在fuse.js中,Bitap算法的實(shí)現(xiàn)主要在BitapSearch類中。接下來(lái)我將嘗試解析一下這個(gè)類。

1. 構(gòu)造函數(shù)初始化

在構(gòu)造函數(shù)中,會(huì)根據(jù)配置參數(shù)計(jì)算并設(shè)置一些內(nèi)部變量,如模式串的二進(jìn)制掩碼、距離閾值等。

const addChunk = (pattern, startIndex) => {
  this.chunks.push({
    pattern,
    alphabet: createPatternAlphabet(pattern),
    startIndex
  })
}

createPatternAlphabet 函數(shù)的作用是生成一個(gè)對(duì)象 mask,它的鍵是模式字符串中的字符,值是一個(gè)二進(jìn)制數(shù),表示該字符在模式字符串中的位置。這個(gè)字典用于后續(xù)的位運(yùn)算匹配算法中,用于計(jì)算某個(gè)字符在目標(biāo)字符串中出現(xiàn)的位置。

export default function createPatternAlphabet(pattern) {
  let mask = {}
  for (let i = 0, len = pattern.length; i < len; i += 1) {
    const char = pattern.charAt(i)
    mask[char] = (mask[char] || 0) | (1 << (len - i - 1))
  }
  return mask
}

| 表示按位或運(yùn)算,可以理解為二進(jìn)制中的||,只要某一二進(jìn)制位有一個(gè)是1,就是1,如果都是0,則是0。

<< 表示左移運(yùn)算。1 << (len - i - 1)表示將數(shù)字1左移len-i-1位。比如 len=4i=2 ,將 1 左移 (4-2-1) 位,即左移 1 位,結(jié)果為 00000010,也就是十進(jìn)制數(shù) 2。

以模式字符串"hello"為例,則 mask 對(duì)象可能如下所示:

{
  "h": 16, // 二進(jìn)制00010000,表示 "h" 在模式字符串的第一個(gè)位置
  "e": 8,  // 00001000,第二個(gè)位置
  "l": 3,  // 00000011,第三和第四個(gè)位置
  "o": 1   // 00000001,第五個(gè)位置
}

2. 類暴露的searchIn方法

2.1 參數(shù)和工具函數(shù)

searchIn方法中,調(diào)用了search函數(shù)。可以看到,search函數(shù)接收了text目標(biāo)字符串,以及pattern模式串和opions參數(shù),用于在目標(biāo)字符串中搜索模式串。

const { isMatch, score, indices } = search(text, pattern, alphabet, {
  location: location + startIndex,
  distance,
  threshold,
  findAllMatches,
  minMatchCharLength,
  includeMatches,
  ignoreLocation
})

fuse.js提供了這些參數(shù)的默認(rèn)值,比如其中的FuzzyOptions:

export const FuzzyOptions = {
  location: 0,
  threshold: 0.6,
  distance: 100
}

我們重點(diǎn)關(guān)注threshold 參數(shù),它表示匹配的閾值,取值范圍為 [0, 1]。如果匹配的得分小于閾值,則表示匹配失敗。在進(jìn)行模式分配時(shí),F(xiàn)use.js 會(huì)根據(jù)模式串的長(zhǎng)度,以及 threshold 參數(shù),計(jì)算出一個(gè)可以接受的最大編輯距離,即 distance 參數(shù)。如果兩個(gè)字符串的編輯距離超過(guò)了這個(gè)值,就認(rèn)為它們不匹配。

具體來(lái)說(shuō),對(duì)于一個(gè)長(zhǎng)度為 m 的模式串,計(jì)算出的最大編輯距離 d 約為 m * (1 - threshold)。例如,如果 threshold0.6,模式串的長(zhǎng)度為 4,則 d = 4 * (1 - 0.6) = 1.6,向下取整后得到 1。也就是說(shuō),對(duì)于一個(gè)長(zhǎng)度為 4 的模式串,最多允許編輯距離為 1。

computeScore根據(jù)傳入的參數(shù)計(jì)算出當(dāng)前匹配的得分,分?jǐn)?shù)越低表示匹配程度越高。

export default function computeScore(
  pattern,
  {
    errors = 0,
    currentLocation = 0,
    expectedLocation = 0,
    distance = Config.distance,
    ignoreLocation = Config.ignoreLocation
  } = {}
) {
  const accuracy = errors / pattern.length
  if (ignoreLocation) {
    return accuracy
  }
  const proximity = Math.abs(expectedLocation - currentLocation)
  if (!distance) {
    // Dodge divide by zero error.
    return proximity ? 1.0 : accuracy
  }
  return accuracy + proximity / distance
}

accuracy = 錯(cuò)誤數(shù)/模式長(zhǎng)度,表示當(dāng)前匹配的質(zhì)量。proximity = 期望位置 - 當(dāng)前匹配位置的絕對(duì)值,表示它們之間的距離。如果 distance 為 0,避開(kāi)被除數(shù)為0的錯(cuò)誤,判斷二者之間距離,返回闕值 1 或者 匹配質(zhì)量的分?jǐn)?shù)。否則,根據(jù)錯(cuò)誤數(shù)和期望位置和實(shí)際位置之間的距離,計(jì)算出匹配得分 score = accuracy + proximity / distance。

我們得到了匹配得分,現(xiàn)在讓我們回到search函數(shù)。

2.2 第一次循環(huán):

while 循環(huán)在每次迭代中執(zhí)行以下操作:在 text 中搜索 pattern,并調(diào)用computeScore計(jì)算每個(gè)匹配的得分。該循環(huán)用來(lái)優(yōu)化搜索算法,不斷比較模式與文本中的字符串,直到找到最佳匹配為止。

let index
// Get all exact matches, here for speed up
while ((index = text.indexOf(pattern, bestLocation)) > -1) {
  let score = computeScore(pattern, {
    currentLocation: index,
    expectedLocation,
    distance,
    ignoreLocation
  })
  currentThreshold = Math.min(score, currentThreshold)
  bestLocation = index + patternLen
  if (computeMatches) {
    let i = 0
    while (i < patternLen) {
      matchMask[index + i] = 1
      i += 1
    }
  }
}

currentThreshold表示當(dāng)前的閾值,用于控制什么樣的匹配可以被接受。它初始化為最大值,然后每次迭代都會(huì)被更新為當(dāng)前最優(yōu)匹配的得分,以保證后續(xù)的匹配得分不會(huì)超過(guò)當(dāng)前最優(yōu)解。同時(shí),如果computeMatchestrue,則在 matchMask 數(shù)組中標(biāo)記匹配,以便后續(xù)統(tǒng)計(jì)匹配數(shù)。

2.3 第二次循環(huán)

每次開(kāi)始搜索前,重置幾個(gè)變量如bestLocation、binMax,計(jì)算掩碼mask的值,掩碼的長(zhǎng)度等于搜索模式的長(zhǎng)度 patternLen。

bestLocation = -1
let lastBitArr = []
let finalScore = 1
let binMax = patternLen + textLen
const mask = 1 << (patternLen - 1)

用一個(gè)for循環(huán)遍歷給定的搜索模式中的每個(gè)字符,計(jì)算出搜索模式的每個(gè)字符對(duì)應(yīng)的掩碼值,這個(gè)掩碼用來(lái)進(jìn)行位運(yùn)算匹配。

for (let i = 0; i < patternLen; i += 1){  
    //...不急不急,后面一步步來(lái)分解。
}
  •  二分查找算法更新區(qū)間端點(diǎn)

我們先看這個(gè)循環(huán)體內(nèi)的一個(gè)while循環(huán)。一個(gè)熟悉的二分查找算法,還有一個(gè)老朋友computeScore函數(shù):計(jì)算當(dāng)前二分區(qū)間中間位置的得分。簡(jiǎn)直就像是即將迷路的旅人見(jiàn)到了自己熟悉的物事。うれしい! 勝利在望了啊同志們!

let binMin = 0
let binMid = binMax  
while (binMin < binMid) {
  const score = computeScore(pattern, {
    errors: i,
    currentLocation: expectedLocation + binMid,
    expectedLocation,
    distance,
    ignoreLocation
  })
  if (score <= currentThreshold) {
    binMin = binMid
  } else {
    binMax = binMid
  }
  binMid = Math.floor((binMax - binMin) / 2 + binMin)
}

在這個(gè)循環(huán)中,每次計(jì)算二分區(qū)間中間位置的得分,然后根據(jù)當(dāng)前得分和閾值來(lái)更新區(qū)間端點(diǎn)。這樣,循環(huán)會(huì)不斷縮小搜索范圍,直到找到最佳匹配或者搜索范圍縮小到為空為止。再用這個(gè)值賦值給binMax作為下一次二分搜索中的右端點(diǎn):

// Use the result from this iteration as the maximum for the next. 
binMax = binMid
  • 計(jì)算區(qū)間兩端的值

計(jì)算出左端點(diǎn) start 和右端點(diǎn) finish:

let start = Math.max(1, expectedLocation - binMid + 1)
let finish = findAllMatches
  ? textLen
  : Math.min(expectedLocation + binMid, textLen) + patternLen
// Initialize the bit array
let bitArr = Array(finish + 2)
bitArr[finish + 1] = (1 &lt;&lt; i) - 1

左端點(diǎn) start 的值是 expectedLocation - binMid + 11 中的較大值,這樣可以保證搜索區(qū)間的左端點(diǎn)不會(huì)小于 1。右端點(diǎn) finish 的值取決于變量 findAllMatches 和文本長(zhǎng)度 textLen。如果 findAllMatches 為true,需要搜索整個(gè)文本,則將右端點(diǎn) finish 設(shè)置為文本長(zhǎng)度 textLen。否則,將右端點(diǎn) finish 設(shè)置為 expectedLocation + binMidtextLen 中的較小值,并加上搜索模式長(zhǎng)度 patternLen,以便搜索可能包含匹配項(xiàng)的區(qū)間。

初始化二進(jìn)制數(shù)組 bitArr,長(zhǎng)度為 finish + 2。數(shù)組中的每個(gè)元素代表一位二進(jìn)制數(shù)中的一位。在 bitArr 數(shù)組中,右端點(diǎn) finish + 1 的元素被設(shè)置為一個(gè)二進(jìn)制數(shù),(1 << i) - 1確保其后i位均為 1,其余位為 0。在后面的算法中,用來(lái)存儲(chǔ)搜索模式和文本之間的匹配信息。

  • 遍歷區(qū)間

從右往左遍歷文本中的每個(gè)字符。這個(gè)循環(huán)體的代碼很長(zhǎng),沒(méi)關(guān)系,繼續(xù)分解便是。

for (let j = finish; j >= start; j -= 1) {
  let currentLocation = j - 1
  let charMatch = patternAlphabet[text.charAt(currentLocation)]
  if (computeMatches) {
    // Speed up: quick bool to int conversion (i.e, `charMatch ? 1 : 0`)
    matchMask[currentLocation] = +!!charMatch
  }
  // First pass: exact match
  bitArr[j] = ((bitArr[j + 1] << 1) | 1) & charMatch
  // Subsequent passes: fuzzy match
  if (i) {
    bitArr[j] |=
      ((lastBitArr[j + 1] | lastBitArr[j]) << 1) | 1 | lastBitArr[j + 1]
  }
  if (bitArr[j] & mask) {
    finalScore = computeScore(pattern, {
      errors: i,
      currentLocation,
      expectedLocation,
      distance,
      ignoreLocation
    })
    // This match will almost certainly be better than any existing match.
    // But check anyway.
    if (finalScore <= currentThreshold) {
      // Indeed it is
      currentThreshold = finalScore
      bestLocation = currentLocation
      // Already passed `loc`, downhill from here on in.
      if (bestLocation <= expectedLocation) {
        break
      }
      // When passing `bestLocation`, don't exceed our current distance from `expectedLocation`.
      start = Math.max(1, 2 * expectedLocation - bestLocation)
    }
  }
}

先看第一段:

let currentLocation = j - 1
let charMatch = patternAlphabet[text.charAt(currentLocation)]
if (computeMatches) {
  // Speed up: quick bool to int conversion (i.e, `charMatch ? 1 : 0`)
  matchMask[currentLocation] = +!!charMatch
}
// First pass: exact match
bitArr[j] = ((bitArr[j + 1] << 1) | 1) & charMatch

這里 根據(jù)該字符是否與模式串中的對(duì)應(yīng)字符匹配,更新 bitArr 數(shù)組相應(yīng)位置的值。

patternAlphabet[text.charAt(currentLocation)] 用于獲取當(dāng)前位置的字符在模式串中最右邊出現(xiàn)的位置。如果該字符不在模式串中,則返回 undefined。然后,將這個(gè)位置記錄在 charMatch 變量中,以便在后面的匹配過(guò)程中使用。

(bitArr[j + 1] << 1 | 1)將右側(cè)位置的匹配狀態(tài)左移一位,將最后一位設(shè)為 1,保證右側(cè)位置的比特位都是 1。再用& charMatch和當(dāng)前位置對(duì)應(yīng)的字符是否匹配的比特位進(jìn)行與運(yùn)算。如果匹配,那么與運(yùn)算的結(jié)果就是 1,否則是 0。這個(gè)過(guò)程實(shí)際上是在構(gòu)建比特矩陣,用于后續(xù)的模糊匹配。

這里需要注意的是,由于 bitArr 數(shù)組的長(zhǎng)度比文本串和模式串的長(zhǎng)度都要長(zhǎng) 2,因此 bitArr 數(shù)組中最后兩個(gè)位置的值都為 0,即 bitArr[finish + 1] 和 bitArr[finish + 2] 的值都為 0。

// Subsequent passes: fuzzy match
if (i) {
  bitArr[j] |=
    ((lastBitArr[j + 1] | lastBitArr[j]) << 1) | 1 | lastBitArr[j + 1]
}

這段代碼實(shí)現(xiàn)了模糊匹配的邏輯。lastBitArr初始化為空數(shù)組,在后面的代碼中,會(huì)看到被賦值為上一次循環(huán)的bitArr

在第一次匹配只考慮完全匹配,bitArr[j] 只需要用到 bitArr[j+1]。但是在后續(xù)的匹配需要考慮字符不匹配的情況,那么就需要用到 lastBitArr 數(shù)組,它存儲(chǔ)了上一次匹配的結(jié)果。具體來(lái)說(shuō),對(duì)于當(dāng)前位置 j,我們把左側(cè)、上側(cè)和左上側(cè)三個(gè)位置【這仨位置可以想象成看似矩陣實(shí)際是二維數(shù)組的左、左上、上,比如最長(zhǎng)公共子序列那個(gè)算法】的匹配結(jié)果進(jìn)行或運(yùn)算,并左移一位。然后再和 1 或上一個(gè)特定的值(lastBitArr[j+1]),最終得到 bitArr[j] 的值。這樣就可以考慮字符不匹配的情況,實(shí)現(xiàn)模糊匹配的功能。

接下來(lái),判斷當(dāng)前位置的匹配結(jié)果是否滿足閾值要求,如果滿足,則更新最優(yōu)匹配位置。

if (bitArr[j] & mask) {
  finalScore = computeScore(pattern, { //...一些參數(shù),這里省略  })
  // This match will almost certainly be better than any existing match.
  // But check anyway.
  if (finalScore <= currentThreshold) {
    // Indeed it is
    currentThreshold = finalScore
    bestLocation = currentLocation
    // Already passed `loc`, downhill from here on in.
    if (bestLocation <= expectedLocation) {
      break
    }
    // When passing `bestLocation`, don't exceed our current distance from `expectedLocation`.
    start = Math.max(1, 2 * expectedLocation - bestLocation)
  }
}

如果 bitArr[j] & mask 的結(jié)果為真,則說(shuō)明當(dāng)前位置匹配成功,接下來(lái)計(jì)算當(dāng)前位置的得分 finalScore。如果 finalScore 小或等于當(dāng)前閾值 currentThreshold ,說(shuō)明當(dāng)前匹配結(jié)果更優(yōu),更新閾值和最優(yōu)匹配位置 bestLocation。

如果最優(yōu)匹配位置 bestLocation 小于等于期望位置 expectedLocation,說(shuō)明已經(jīng)找到了期望位置的最優(yōu)匹配,跳出循環(huán);否則更新搜索起點(diǎn) start,保證在向左搜索時(shí)不超過(guò)當(dāng)前距離期望位置的距離。

????????判斷當(dāng)前錯(cuò)誤距離是否已經(jīng)超出了之前最好的匹配結(jié)果,如果已經(jīng)超出,則終止后續(xù)匹配,因?yàn)楹罄m(xù)匹配的結(jié)果不可能更優(yōu)。

// No hope for a (better) match at greater error levels.
const score = computeScore(pattern, {
  errors: i + 1,
  currentLocation: expectedLocation,
  expectedLocation,
  distance,
  ignoreLocation
})
if (score > currentThreshold) {
  break
}
lastBitArr = bitArr

最后,真的最后了????????:

const result = {
  isMatch: bestLocation >= 0,
  // Count exact matches (those with a score of 0) to be "almost" exact
  score: Math.max(0.001, finalScore)
}
if (computeMatches) {
  const indices = convertMaskToIndices(matchMask, minMatchCharLength)
  if (!indices.length) {
    result.isMatch = false
  } else if (includeMatches) {
    result.indices = indices
  }
}

convertMaskToIndices()函數(shù)將匹配掩碼轉(zhuǎn)換為匹配的索引數(shù)組。以上,我們得到了search的結(jié)果。

接下來(lái),回到searchIn函數(shù),我們會(huì)看到對(duì)result結(jié)果的一些其它處理。這里不再贅述。

基于動(dòng)態(tài)規(guī)劃算法的Levenshtein算法

動(dòng)態(tài)規(guī)劃(Dynamic Programming)常用于處理具有有重疊子問(wèn)題和最優(yōu)子結(jié)構(gòu)性質(zhì)的問(wèn)題,它將原問(wèn)題分解成一系列子問(wèn)題,通過(guò)求解子問(wèn)題的最優(yōu)解來(lái)推算出原問(wèn)題的最優(yōu)解。動(dòng)態(tài)規(guī)劃算法兩個(gè)關(guān)鍵步驟:設(shè)計(jì)狀態(tài)轉(zhuǎn)移方程,用來(lái)表示狀態(tài)之間的關(guān)系;確定邊界,設(shè)置循環(huán)結(jié)束條件。

一個(gè)經(jīng)典的動(dòng)態(tài)規(guī)劃算法例子,使用動(dòng)態(tài)規(guī)劃算法實(shí)現(xiàn)斐波那契數(shù)列:

function fibonacci(n) {
  if (n === 0 || n === 1) return n;
  const dp = new Array(n + 1).fill(0);
  dp[0] = 0;
  dp[1] = 1;
  for (let i = 2; i <= n; i++) {
    dp[i] = dp[i - 1] + dp[i - 2];
  }
  return dp[n];
}

Levenshtein算法是一種用于計(jì)算兩個(gè)字符串之間的編輯距離的算法,即需要將一個(gè)字符串轉(zhuǎn)換為另一個(gè)字符串所需的最少編輯次數(shù)。編輯操作可以是插入、刪除或替換字符。

function levenshteinDistance(str1, str2) {
  const m = str1.length;
  const n = str2.length;
  const dp = [];
  for (let i = 0; i <= m; i++) {
    dp[i] = [i];
  }
  for (let j = 1; j <= n; j++) {
    dp[0][j] = j;
  }
  for (let i = 1; i <= m; i++) {
    for (let j = 1; j <= n; j++) {
      const cost = str1[i-1] === str2[j-1] ? 0 : 1;
      dp[i][j] = Math.min(
        dp[i-1][j] + 1,//刪除
        dp[i][j-1] + 1,
        dp[i-1][j-1] + cost
      );
    }
  }
  return dp[m][n];
}

讓我們照著下圖來(lái)分析如何求出dp[i][j]。

|   |   |     s |   i   |   t   |   t   |   i   |   n   |   g   |
|   | 0 | 1     | 2     | 3     | 4     | 5     | 6     | 7     |
| k | 1 | 1     | 2     | 3     | 4     | 5     | 6     | 7     |
| i | 2 | 2     | 1     | 2     | 3     | 4     | 5     | 6     |
| t | 3 | 3     | 2     | 1     | 2     | 3     | 4     | 5     |
| t | 4 | 4     | 3     | 2     | 1     | 2     | 3     | 4     |
| e | 5 | 5     | 4     | 3     | 2     | 2     | 3     | 4     |
| n | 6 | 6     | 5     | 4     | 3     | 3     | 2     | 3     |

假設(shè)我們要將字符串 str1 轉(zhuǎn)換為字符串 str2,并且我們已經(jīng)定義了一個(gè)二維數(shù)組 dp,其中 dp[i][j] 表示將字符串 str1 的前 i 個(gè)字符轉(zhuǎn)換為字符串 str2 的前 j 個(gè)字符所需的最少編輯次數(shù)。

為了求出 dp[i][j],我們可以考慮將字符串 str1 的前 i 個(gè)字符轉(zhuǎn)換為字符串 str2 的前 j 個(gè)字符時(shí),最后一步進(jìn)行了什么操作??赡艿牟僮饔腥N:

  • 刪除字符串 str1 中的第 i 個(gè)字符,然后將剩余的字符轉(zhuǎn)換為字符串 str2 的前 j 個(gè)字符。這種情況下,dp[i][j] 就等于 dp[i-1][j] + 1,其中 dp[i-1][j] 表示將字符串 str1 的前 i-1 個(gè)字符轉(zhuǎn)換為字符串 str2 的前 j 個(gè)字符所需的最少編輯次數(shù),再加上刪除字符的操作次數(shù) 1。

  • 在字符串 str1 的第 i 個(gè)位置插入字符 str2[j],然后將剩余的字符轉(zhuǎn)換為字符串 str2 的前 j 個(gè)字符。這種情況下,dp[i][j] 就等于 dp[i][j-1] + 1,其中 dp[i][j-1] 表示將字符串 str1 的前 i 個(gè)字符轉(zhuǎn)換為字符串 str2 的前 j-1 個(gè)字符所需的最少編輯次數(shù),再加上插入字符的操作次數(shù) 1。

  • 將字符串 str1 中的第 i 個(gè)字符替換為字符 str2[j],然后將剩余的字符轉(zhuǎn)換為字符串 str2 的前 j 個(gè)字符。這種情況下,dp[i][j] 就等于 dp[i-1][j-1] + cost,其中 dp[i-1][j-1] 表示將字符串 str1 的前 i-1 個(gè)字符轉(zhuǎn)換為字符串 str2 的前 j-1 個(gè)字符所需的最少編輯次數(shù),再加上替換字符的操作次數(shù) cost(如果 str1[i]str2[j] 相同,那么 cost 就為 0,否則 cost 就為 1)。

上述三種操作中所需的最少編輯次數(shù)取最小值,便可作為將字符串 str1 的前 i 個(gè)字符轉(zhuǎn)換為字符串 str2 的前 j 個(gè)字符所需的最少編輯次數(shù)。

到此,關(guān)于“Fuse.js模糊查詢算法怎么使用”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI