ropes Questions
2
Solved
In writing some Python code, I came upon a need for a string-like data structure that offers fast insertion into, access to, and deletion from arbitrary positions. The first data structure that cam...
Clance asked 9/6, 2013 at 1:28
3
Solved
For any given String, for instance
val s = "abde"
how to insert a character c: Char at position 2, after b ?
Update
Which Scala collection to consider for multiple efficient insertions and de...
Barbirolli asked 11/8, 2014 at 7:9
4
Solved
Is there a public implementation of the Rope data structure in C#?
1
Solved
Given a rope, let's say we need to know its hash (by passing the concatenation of all leaves through some hash function).
Now, when one rope leaf changes, what's an efficient way to recalculate th...
Vulpine asked 8/2, 2017 at 9:58
5
Solved
I was wondering under what circumstances you would use a rope over another STL container?
5
Solved
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 tha...
Vigor asked 7/12, 2009 at 22:42
1
Solved
I was reading about the rope data structure.I am interested in building a text editor using C++ and Qt. My question is: Does built-in string manipulating functions in programming languages like C++...
Antineutrino asked 22/9, 2012 at 15:30
1
Solved
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 ...
Orlantha asked 8/10, 2010 at 21:15
1
© 2022 - 2024 — McMap. All rights reserved.