/*切割文字*/ function toReg(str){ var array = str.match(/<[^>]*>|[^< ,.\r\n\t]+[ ,.\r\n\t]*/ig); result = []; for(var i = 0, l = array.length; i < l; i++) { if(array[i].charAt(0) == '<') { temp = array[i].match(/[^<][^> ]*/i); result[i] = { txt: array[i], tag: temp }; }else{ result[i] = { txt: array[i], tag: false }; } } return result; } /*最長共同部分序列*/ function LCS(na, oa){ var m = na.length, n = oa.length; var i, j; var d = []; /*Dynamic*/ for(i = 0; i <= m; i++) { d[i] = []; d[i][0] = 0; } for(j = 1; j <= n; j++) { d[0][j] = 0; } /*動態規劃演算法*/ for(i = 1; i <= m; i++) { for(j = 1; j <= n; j++) { if(na[i - 1].txt == oa[j - 1].txt) { d[i][j] = d[i - 1][j - 1] + 1; }else if(na[i - 1].tag && na[i - 1].tag==oa[j - 1].tag) { d[i][j] = d[i - 1][j - 1] + 1; }else if (d[i][j - 1] > d[i - 1][j]) { d[i][j] = d[i][j - 1]; }else { d[i][j] = d[i - 1][j]; } } } /*標註共同部分序列*/ i = m; j = n; while (i > 0 && j > 0) { if(d[i][j] == d[i - 1][j]) { i--; }else if(d[i][j] == d[i][j - 1]) { j--; }else{ i--; j--; na[i].com = j; oa[j].com = i; } } delete d; } /*合併比較陣列*/ function merge(na, oa){ var m = na.length, n = oa.length; var result = []; if(!m && !n) { return null; } var i; var oldPrint = 0; for(i = 0; i < m; i++) { /*有共同的資料*/ if(na[i].com != undefined) { /*有刪除的舊資料*/ if(na[i].com > oldPrint) { var maxRow=(na[i].com < n) ? na[i].com : n; for(j = oldPrint; j < maxRow; j++) { if(oa[j].tag) { result.push(oa[j].txt); }else{ result.push('<del>' + oa[j].txt + '</del>'); } } } /*記錄下一次舊資料的指標*/ oldPrint = na[i].com + 1; /*儲存共同的資料*/ result.push(na[i].txt); /*新的差異資料*/ }else{ if(na[i].tag) { result.push(na[i].txt); }else{ result.push('<ins>' + na[i].txt + '</ins>'); } } } return result; }
展示(demo)
酷耶,我們演算法正好有講到LCS的問題!!
回覆刪除我只是很擔心他會在使用者端當掉
回覆刪除畢竟資料複雜度大時會需要一點時間
你可以將 google 的查詢結果貼上去看看
會出現很傻眼的慢
再怎麼說這用 JavaScript 寫出來的
根本不能跟 php 相比
雖然 server 負擔是真的減小很多