Skip to Content
40 Algorithms Every Programmer Should Know
book

40 Algorithms Every Programmer Should Know

by Imran Ahmad
June 2020
Intermediate to advanced
382 pages
11h 39m
English
Packt Publishing
Content preview from 40 Algorithms Every Programmer Should Know

Populating the FP-tree

Let's consider the transaction data shown in the following table. Let's first represent it as a sparse matrix:

ID Bat Wickets Pads Helmet Ball
1 0 1 1 0 0
2 1 1 1 1 0
3 0 0 0 1 1
4 1 0 1 1 0

Let's calculate the frequency of each item and sort them in descending order by frequency:

Item Frequency
pads 3
helmet 3
bat 2
wicket 2
ball 1

Now let's rearrange the transaction-based data based on the frequency:

ID Original Items Reordered Items
t1 Wickets, pads Pads, wickets
t2 Bat, wickets, pads, helmet Helmet, pads, wickets, bat
t3 Helmet, ball Helmet, ball
t4 Bat, pads, helmet Helmet, pads, bat

To build the FP-tree, let's start with the first branch of the FP-tree. The FP-tree ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

50 Algorithms Every Programmer Should Know - Second Edition

50 Algorithms Every Programmer Should Know - Second Edition

Imran Ahmad
Grokking Algorithms

Grokking Algorithms

Aditya Bhargava

Publisher Resources

ISBN: 9781789801217Supplemental Content