Most of the cases in competitive programming it is necessary to know about the complexity of a code before use it. We uses different library functions and STL in C++ coding. And there is a beautiful documentation on STL with complexities.
I want to know about the complexities of different built in generic Collections methods (e.g. complexity of java.util.Arrays.sort()) in java. Is there any proper documentation about the complexities in Java all together?
Thanks in advance.