The term reverse index has more than one meaning.
This is particularly of value when a column in a database relation contains text values that commonly start with some fairly long prefix.
For instance, an indexed column may have a standardized form; sales orders might be formatted as a 12 character string where the first order is "SO-100000000", the second "SO-100000001", and so forth. Until there are millions of orders, the first six characters will be redundant, and won't contribute at all to index searches.
A reverse index would store these in reverse order, thus "000000001-OS", "100000001-OS", "200000001-OS", and so forth, allowing the highly-variable last character in the column to scatter the values.