Level 2: Identical to level 1 only faster. The array with sorted keys
and hash lookup table are only recreated when a new key is added,
a value is changed, or the sort routine is changed.
That's not necessarely faster. It depends on how often you are inserting
and how often you are asking for the keys. What you could do is some
form of hybrid:
- Create an array @sorted, and a variable $clean, initially set to 0.
- If FIRSTKEY is called, check the value of $clean. If it's true,
@sorted contains the sorted keys. If false, fill @sorted with
the sorted keys of the hash, and set $clean to 1.
- If you insert a key in the hash, or change the sort order, or
delete something from the hash, set $clean to 0.
- This might cause some bizarre results if you modify a hash while
iterating over it, but that may happen with normal hashes too.
Deleting a key doesn't require a rebuild because the element is deleted
from the array and the lookup hash.
Are you aware that deleting an element from an array can take time
linear in the size of the array?
Abigail
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|