On Tue, Mar 02, 2010 at 09:50:51AM -0600, David Nicol wrote: > On Mon, Mar 1, 2010 at 12:43 PM, karl williamson > <public@khwilliamson.com> wrote: > > > Inversion lists can be searched binarily. bsearch() is a standard C library > > routine, but the only mention of it in Perl is in the POSIX module where it > > says it is not furnished. This makes me think there must be a problem with > > using the library routine. Is there? > > the problem is that you need to keep your data sorted, which is not > perly. The perly thing to do is to keep data in a hash table instead > of a sorted array. So not furnishing a perl interface to bsearch a > perl array makes sense, because You Should Be Using A Hash Table Silly > Rabbit. You're not understanding the problem here. What you say is appropriate for the general case in perl, but not for the specific area that Karl is describing. Nicholas ClarkThread Previous | Thread Next