<div dir="ltr">The issue with ordering as I understand it is that if it is in (some form of) sorted order, you can use binary search to find entries.<br>If you want order retained, it is best to use a genbook - but it won&#39;t be as efficient, and may not have as good UI support.<br>
With huge english dictionaries (like Webster&#39;s, for instance) this becomes very important.<br><br>From BPBible&#39;s perspective, dictionary handling is done as follows:<br>1. Read the index of the dictionary and divide by 4 or 6 to get the length (depending on the driver)<br>
2. Set the virtual list length to the dictionary length<br>3. When any item is displayed in the virtual list, it retrieves it from the module.<br>4. When the user starts typing in the text box above, it does a binary search to find which item to display.<br>
<br>4 is already quite slow enough on big dictionaries - by having it unsorted, it would make it quite a lot slower, I imagine.<br>All the keys from the module would have to be read in, which takes a while.<br><br clear="all">
God Bless,<br>Ben<br>-------------------------------------------------------------------------------------------<br>The Lord is not slow to fulfill his promise as some count slowness,<br>but is patient toward you, not wishing that any should perish,<br>
but that all should reach repentance.<br>2 Peter 3:9 (ESV)<br>
<br><br><div class="gmail_quote">On Thu, Sep 18, 2008 at 12:43 AM, Daniel Owens <span dir="ltr">&lt;<a href="mailto:dhowens@pmbx.net">dhowens@pmbx.net</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<font face="Arial Unicode MS">mention that
byte ordering does some strange things to Vietnamese dictionaries. The
Vietnamese script is a Latin script, but because it uses some odd
characters code point ordering results in illogical and
non-alphabetical entry ordering. For example, the &quot;d&quot; with a line
through it (ð) gets relegated to near the end of the dictionary instead
of after the regular &quot;d&quot; or anything with an apostrophe at the
beginning of a word or phrase gets moved to the top of the list
regardless of the first letter (such as &#39;tis). I am supportive of the
IIRC general opinion. Let the module creator worry about the ordering.
Otherwise you get some very strange dictionary behavior. <br>
</font></blockquote></div><br></div>