The document summarizes several improved algorithms that aim to address the drawbacks of the Apriori algorithm for association rule mining. It discusses six different approaches: 1) An intersection and record filter approach that counts candidate support only in transactions of sufficient length and uses set intersection; 2) An approach using set size and frequency to prune insignificant candidates; 3) An approach that reduces the candidate set and memory usage by only searching frequent itemsets once to delete candidates; 4) A partitioning approach that divides the database; 5) An approach using vertical data format to reduce database scans; and 6) A distributed approach to parallelize the algorithm across machines.