I am interested if it is known what algorithms PHP uses for explode/implode functions, and what are their time complexities?
Thank you in advance.
|
I am interested if it is known what algorithms PHP uses for explode/implode functions, and what are their time complexities? Thank you in advance. |
|||
|
In
Its just a single loop So I'd call it has |
|||||||
|
|
Short answer: For a single byte delimiter,
Extended answer: The basic algorithm of To find the positions of delimiter in string, it uses the internal function But for delimiter values longer than one byte, it calls Now let’s have a look at the worst case for this algorithm where both the first and the last byte of the pattern fit but the second-last doesn’t, e.g.:
A
or
Since Σ i for i from 1 to N can be expressed by N·(N+1)/2 = (N2+N)/2, we can also write:
For simplicity, let’s assume both N and M are always even, so we can omit the ‘ceil’s and ‘floor’s:
Furthermore, we can estimate the values up: N-M < N and M-N/2-1 < N. Thus we get:
This proofs that |
|||
|
|
|
According to PHP sources on github it is linear, you can check explode() here: https://github.com/php/php-src/blob/master/ext/standard/string.c#L1009 |
|||
|
|
O(N), I suppose. I don't see how you could do any better or any worse. – NullUserException♦ Dec 28 '12 at 23:40