francecil / leetcode

solutions about leetcode
MIT License
9 stars 1 forks source link

树的最小编辑距离 #51

Open francecil opened 3 years ago

francecil commented 3 years ago

计算将一棵树 tree1 通过编辑,变为另一棵树 tree2 的最小编辑距离

操作定义如下:

时间复杂度要求 O(n^3)

francecil commented 3 years ago

关键字:Tree Editing Distance

相关算法:

相关论文:

相关代码: