I'd love to be able to use one of Kyoto Cabinet's tree datastructures, but I need the ability to return the nearest key.

Ie I have

1,100
3,500
7,1000

And given 2, I'd return 1.

Is this possible? If not, what is a lightweight, high speed alternative turned to do exactly this?

Thanks

link|improve this question

56% accept rate
Would a lower_bound or upper_bound function be an alternative? I'd love to know how to solve this problem! – youngthing Feb 8 at 11:54
I never found a good way to do this in Kyoto cabinet :( – A Question Asker Feb 8 at 23:16
The only way that I know is to write custom comparator in C++ and then maintain custom build of kc lib. You may also have to recompile java bindings. If you are still looking for the answer I can write a quick how-to. – Boris May 3 at 5:14
write how-to, post here and to hackernews, profit :) – A Question Asker May 3 at 16:32
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.