Hello, I have implemented a heuristic, indexed doubly-linked list data structure [1][2] implementing java.util.List and java.util.Deque interfaces that has superior performance compared to java.util.LinkedList and java.util.ArrayList, and comparable performance to TreeList while having smaller (around 10 bytes per item) memory footprint.
I would like to propose it into Collections4, but, first, I need to know what do you think about it? Best regards, rodde [1] https://github.com/coderodde/LinkedList [2] http://coderodde.github.io/weblog/#eill