Perl Cookbook

Perl CookbookSearch this book
Previous: 5.13. Presizing a HashChapter 5
Hashes
Next: 5.15. Representing Relationships Between Data
 

5.14. Finding the Most Common Anything

Problem

You have an aggregate data structure, such as an array or a hash. You want to know how often each element in the array (or key or value in the hash) occurs. For instance, if your array contains web server transactions, you might want to find the most commonly requested file. If your hash maps usernames to number of logins, you want to find the most common number of logins.

Solution

Use a hash to count how many times each element, key, or value appears:

%count = ();
foreach $element (@ARRAY) {
    $count{$element}++;
}

Discussion

Any time you want to count how often different things appear, you should probably be using a hash. The foreach adds one to $count{$element} for every occurrence of $element.

See Also

Recipe 4.6; Recipe 4.7


Previous: 5.13. Presizing a HashPerl CookbookNext: 5.15. Representing Relationships Between Data
5.13. Presizing a HashBook Index5.15. Representing Relationships Between Data



Banner.Novgorod.Ru