Oracle's default index is a B* index. (A B* index is "any" variation of a B+ index.) Oracle mentions B* in some of their DBA and Fundamentals documentation. You can also create clusters which use cluster indexes. You can create bitmap indexes in a data warehouse or OLAP database. Bitmap indexes perform extremly poorly in an OLTP database although they might work ok if a table is rarely updated.
For performance reasons, I'm sure that all databases designed for OLTP use B* trees as their primary indexes. Teradata, for example, is designed for data warehousing and uses hash-based indexes.