Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
1k views

Is there any scenario where the Rope data structure is more efficient than a string builder

Related to this question, based on a comment of user Eric Lippert. Is there any scenario where the Rope data structure is more efficient than a string builder? It is some people's opinion ...
8
votes
2answers
737 views

Public implementation of ropes in C#?

Is there a public implementation of the Rope data structure in C#?
5
votes
1answer
214 views

String representations: improvements over ropes?

I want a representation for strings with fast concatenation and editing operations. I have read the paper "Ropes: an Alternative to Strings", but have there been any significant improvements in this ...
3
votes
1answer
184 views

What is the concatenation complexity of balanced ropes?

I've looked at different papers and here is the information that I've gathered: SGI implementation and C cords neither guarantee O(1) time concatenation for long ropes nor ~log N depth for ...
2
votes
2answers
120 views

StringBuilder vs Ropes

Good morning, I am writing a language parser, and am looking for the best structure to use for a rollback cache which currently does the following: When requesting a new character from the stream, ...
2
votes
1answer
192 views

Ropes: what's “large enough to benefit from cache effects”?

From Wikipedia: The main disadvantages are greater overall space usage and slower indexing, both of which become more severe as the tree structure becomes larger and deeper. However, many ...
1
vote
1answer
74 views

Split operation on rope data structures

I am working on implementing the Rope data structure in C++ for completely abstract objects. The problem I am having is that I can't figure out the implementation of the critical "split" operation. ...
1
vote
1answer
158 views

Matching regular expressions against non-Strings in Ruby without conversion

If a Ruby regular expression is matching against something that isn't a String, the to_str method is called on that object to get an actual String to match against. I want to avoid this behavior; I'd ...
0
votes
3answers
147 views

How is the data stored in a textbox?

I was reading this paper "Ropes: an Alternative to Strings" about ropes [figure from the same paper] and I was wondering if that is the data structure used by today's browsers to implement ...