edit-distance
Shortest sequence of operations transforming a file tree to another
Given two file trees A and B, is it possible to determine the shortest sequence of operations or a short sequence of operations that is necessary in order to transform A to B?[详细]
2023-03-25 00:54 分类:问答Levenshtein Distance Formula in CoffeeScript?
I am trying to create or find a CoffeeScript implementation of the Levenshtein Distance formula, aka Edit Distance. Here is what I have so far, any help at all would be much appreciated.[详细]
2023-03-19 07:30 分类:问答Fast(er) algorithm for the Length of the Longest Common Subsequence (LCS)
Problem: Need the Length of the LCS between two strings. The size of the strings is at most 100 characters. The alphabet is the usual DNA one, 4 characters \"ACGT\". The dynamic approach is not quick[详细]
2023-03-16 17:33 分类:问答Java: Difference between two lists
My c开发者_如何学运维ompany\'s cat-herding application tracks a convoy of cats. Periodically, it needs to compare previousOrder to currentOrder (each is an ArrayList<Cat>) and notify the cat-wra[详细]
2023-03-09 14:51 分类:问答How to find that two words differ by how much distance>> Is there any shortest way for this
I have read about Levenshtein distance about the calculation of the distance between the two distinct words.[详细]
2023-02-21 12:23 分类:问答Word-level edit distance of a sentence
Is there an algorithm that lets you find the word-level edit distance between 2 sentences? For eg.,开发者_如何学C \"A Big Fat Dog\" and \"The Big House with the Fat Dog\" have 1 substitute, 3 insertio[详细]
2023-02-12 17:42 分类:问答How to correct bugs in this Damerau-Levenshtein implementation?
I\'m back with another longish question. Having experimented with a number of Python-based Damerau-Levenshtein[详细]
2023-01-11 02:39 分类:问答Using base64 encoding as a mechanism to detect changes
Is it possible to detect changes in the base64 encoding of an object to detect the degree of changes in the object.[详细]
2022-12-23 16:19 分类:问答Efficient way of calculating likeness scores of strings when sample size is large?
Let\'s say that you have a list of 10,000 email addresses, and you\'d like to find what some of the closest \"neighbors\" in this list are - defined as email addresses that are suspiciously close to o[详细]
2022-12-09 09:28 分类:问答