Search
John
<<My hope is to find a new method which would be faster than the binary search
method.>>
The only method that I can think of off the top of my head is to use a "Hash
table". There is a bit of an overhead in setting up the table, but once its
set up it is very very fast. It works best if you are doing a lot of lookups.
Let me know if this is the case and I will explain how it works.
Stew