autocomplete Trie

Working on new editor enhancements?
User avatar
idle
Always Here
Always Here
Posts: 5042
Joined: Fri Sep 21, 2007 5:52 am
Location: New Zealand

Re: autocomplete Trie

Post by idle »

switched to utf8 and converted to array based so it can be saved and restored from file or memory and sorted the Enum out

pros
save and restore
same memory use on x86 amd x64
more cache friendly
utf8 shorter strings
nibbles smaller alphabet
cons
may create page faults reallocating, need to create trie with enough space initially
twice the number of nodes to access a token
Windows 11, Manjaro, Raspberry Pi OS
Image
User avatar
idle
Always Here
Always Here
Posts: 5042
Joined: Fri Sep 21, 2007 5:52 am
Location: New Zealand

Re: autocomplete Trie

Post by idle »

mashed it into a ScintillaGadget using Scintillas Autocomplete, I don't see any issues speed wise.
Tested on x64 linux and windows xp vm

It still has a slight problem with the positioning if you return at end of line the list will appear at the wrong location as I'm missing to trap a message
Space cancels the list, Return enters the item
I still have to abstract it a little to manage contexts, that can be done in the trie itself but I need to study the ide code a little more before deciding how to facilitate it.

Can you please test and report back how it performs on your platform.

Edit
fixed bug in enum position with the change to support Unicode and UTF8 keys
Windows 11, Manjaro, Raspberry Pi OS
Image
User avatar
idle
Always Here
Always Here
Posts: 5042
Joined: Fri Sep 21, 2007 5:52 am
Location: New Zealand

Re: autocomplete Trie

Post by idle »

Fixed bug in enum position with the change to support both Unicode and UTF8 keys.
Windows 11, Manjaro, Raspberry Pi OS
Image
Post Reply