Skip to content

Commit 0463be0

Browse files
authored
Merge pull request #171 from mikechengwei/master
修改: fd-growth 算法文档
2 parents 3a7db20 + f94afe0 commit 0463be0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/12.使用FP-growth算法来高效发现频繁项集.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ class treeNode:
2626
self.count = numOccur # 节点出现次数
2727
self.nodeLink = None # 不同项集的相同项通过nodeLink连接在一起
2828
# needs to be updated
29-
self.parent = parentNode # 节点的父节点
30-
self.children = {} # 存储儿子节点
29+
self.parent = parentNode # 指向父节点
30+
self.children = {} # 存储叶子节点
3131
```
3232
3333
## FP-growth 原理

0 commit comments

Comments
 (0)