Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Rope (data structure)
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== Delete === : ''Definition:'' <code>Delete(i, j)</code>: delete the substring {{math|''C<sub>i</sub>'', β¦, ''C''<sub>''i'' + ''j'' β 1</sub>}}, from ''s'' to form a new string {{math|''C''<sub>1</sub>, β¦, ''C''<sub>''i'' β 1</sub>, ''C''<sub>''i'' + ''j''</sub>, β¦, ''C<sub>m</sub>''}}. : ''Time complexity:'' {{tmath|O(\log N)}}. This operation can be done by two <code>Split()</code> and one <code>Concat()</code> operation. First, split the rope in three, divided by ''i''-th and ''i+j''-th character respectively, which extracts the string to delete in a separate node. Then concatenate the other two nodes. <syntaxhighlight lang="java"> @Override public RopeLike delete(int start, int length) { val lhs = split(start); val rhs = split(start + length); return rebalance(new RopeLikeTree(lhs.fst, rhs.snd)); } </syntaxhighlight>
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)