Quote:
Originally Posted by DNSB
So tap on the displayed page of total pages, add 30 to the current page number, enter it on the keyboard and go there. If nothing else a simply binary divide search gets me anywhere in my collection in well under 30 taps.
|
I think his point is that he doesn't know how many pages he has to go through to find the next author, so he can't simply add X pages to the current one.
And a binary search is just a workaround, the actual solution would be indeed to have at a first level a list of authors, and then choosing one of the authors would bring you to the corresponding books. Isn't that possible?