What is the time complexity of the String#substring() method in Java?

link|improve this question

What do you think? – Bart Kiers Jan 13 '11 at 11:59
@i think since it is a library function that is used quite often, sun must have optimised for it :). so O(1) – TimeToCodeTheRoad Jan 13 '11 at 12:05
feedback

3 Answers

up vote 14 down vote accepted

Undocumented - but in practice O(1) if you assume no garbage collection is required, etc.

It simply builds a new String object referring to the same underlying char[] but with different offset and count values. So the cost is the time taken to perform validation and construct a single new (reasonably small) object. That's O(1) as far as it's sensible to talk about the complexity of operations which can vary in time based on garbage collection, CPU caches etc. In particular, it doesn't directly depend on the length of the original string or the substring.

link|improve this answer
2  
+1 for "undocumented", which is an unfortunate weakness of the API. – Raedwald Jan 13 '11 at 12:43
4  
It's not weakness. If behavior is documented, and implementation details are not, it allows faster implementations in the future. In general, Java often defines behavior and lets implementations decide what's best way. In other words - you should not care, after all, it's Java ;-) – peenut Jan 13 '11 at 15:37
Good point peenut, even if I hardly believe they will ever manage to make this one faster than O(1). – abahgat Aug 12 '11 at 16:04
feedback

O(1) because no copying of the original string is done, it just creates a new wrapper object with different offset information.

link|improve this answer
feedback

Judge for yourself from following, but Java's performance drawbacks lie somewhere else, not here in substring of a string. Code:

public static void main(String[] args) throws IOException {

        String longStr = "asjf97zcv.1jm2497z20`1829182oqiwure92874nvcxz,nvz.,xo" + 
                "aihf[oiefjkas';./.,z][p\\°°°°°°°°?!(*#&(@*&#!)^(*&(*&)(*&" +
                "fasdznmcxzvvcxz,vc,mvczvcz,mvcz,mcvcxvc,mvcxcvcxvcxvcxvcx";
        int[] indices = new int[32 * 1024];
        int[] lengths = new int[indices.length];
        Random r = new Random();
        final int minLength = 6;
        for (int i = 0; i < indices.length; ++i)
        {
            indices[i] = r.nextInt(longStr.length() - minLength);
            lengths[i] = minLength + r.nextInt(longStr.length() - indices[i] - minLength);
        }

        long start = System.nanoTime();

        int avoidOptimization = 0;
        for (int i = 0; i < indices.length; ++i)
            //avoidOptimization += lengths[i]; //tested - this was cheap
            avoidOptimization += longStr.substring(indices[i],
                    indices[i] + lengths[i]).length();

        long end = System.nanoTime();
        System.out.println("substring " + indices.length + " times");
        System.out.println("Sum of lengths of splits = " + avoidOptimization);
        System.out.println("Elapsed " + (end - start) / 1.0e6 + " ms");
    }

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?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.