What is the time complexity of the String#substring() method in Java?
feedback
|
|
Undocumented - but in practice O(1) if you assume no garbage collection is required, etc. It simply builds a new | |||||||||||
feedback
|
|
O(1) because no copying of the original string is done, it just creates a new wrapper object with different offset information. | |||
|
feedback
|
|
Judge for yourself from following, but Java's performance drawbacks lie somewhere else, not here in substring of a string. Code:
Output: substring 32768 times Sum of lengths of splits = 1494414 Elapsed 2.446679 ms If it is O(1) or not, depends. If you just reference same String in memory, then imagine very long String, you make substring and stop referencing long one. Wouldn't be nice to release memory for long one? | |||
|
feedback
|