Ropes for Java
A Rope is an alternative to the traditional java String. A rope is a kind of heavy weight String that perform faster and more effcient in terms of modification. Basically, the rope is not effcient in normal string operations, but, it is powerfull when in appending its conents, also looping a rope is linear, which means a great performance in terms of time. A Rope is represented as a tree rather than an array of characters as the normal String.
For a deeper look: click here. or here.
To download the latest version of ropes: click here.
For a deeper look: click here. or here.
To download the latest version of ropes: click here.
1 comment:
I think , I is like StringBuilder in C# .
Post a Comment