I want to implement word document differ, what algorithms does it requires to implement?
feedback
|
|
The Most optimize solution of lcs is O(ND) Myer 's algorithm , and here is an algorithmic approach which I used to implement to diff office 2007 documents. Link to algorithm paper | |||
|
feedback
|
|
A diff is essentially just a solution to the longest common sub-sequence problem. The optimal solution requires knowledge of dynamic programming so it's a fairly complex problem to solve. However, it can also be done by constructing a suffix-tree. Both algorithms are outlined here. | |||||||||
feedback
|
|
| |||
|
feedback
|
|
Well, generally speaking,
That said, this all works fine with text based documents. Since Word Documents are effectively in a binary format, and include lots of formatting information and data, this will be far more complex. Ideally, you could look into automating Word itself as it has the ability to "diff" between documents, as detailed here: Microsoft Word Tip: How to compare two documents for differences | |||||||
feedback
|
|
As Ben S indicated, the differencing problem can be addressed generally by solving the longest common sub-sequence problem. More specifically, The Hunt-McIlroy algorithm is one of the classic algorithms that have been applied to the problem (e.g in the implementation of Unix' diff utility). | |||
|
feedback
|