Created with the Web Accessibility Wizard |
MAFIA: PEP (Parent equivalence pruning)
PEP (Current node C, MFI) {
Expand all children using C.tail and reorder children by increasing support
Move children from C.tail to C.head with PEP pruning
For each item i in C.tail {
newNode = C union {i}
if newNode is frequent
PEP (newNode, MFI)
}
if (C is a leaf and C.head is not in MFI)
Add C.head to MFI
}
{}
{1}
{1,2}
{1,2,3,4}
{1,2,3}
{1,2,4}
Slide Links:
Slide Comments:
Text-Mostly Version Graphic Version |