Hacker News new | ask | show | jobs
by YesThatTom2 1965 days ago
Same question. Can you give me an example of an indexing scheme that works on non-sortable data? I can’t think of any.
1 comments

The canonical example is indexing rectangles. They have no total order. It is far from the only example. Any data type where equality and intersection are not equivalent test functions will effectively be non-sortable.

There are many indexing schemes for data with these properties. They focus on topological relationships rather than order relationships.

Do you know of any blog/papers which talks about this - using topology for such interval data types.