Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Fiverr / sana_fiaz / Buyer Request X Asign2 ropess.pdf X C Get Homework Help With Chegg X In C++ Your Task Is To Design, Im

image text in transcribed

image text in transcribed

image text in transcribed

image text in transcribed

Fiverr / sana_fiaz / Buyer Request X Asign2 ropess.pdf X C Get Homework Help With Chegg X In C++ Your Task Is To Design, Im X + 0 X C File C:/Users/sehar/Downloads/Asign2%20ropess.pdf Paused !!! Apps Shanes Tools All Hashtag - Hasht... Verified Email list | L... Instagram Money C... The Notation S[i, J)... = Asign2 ropess.pdf 1 / 4 100% + Use Visual Studio, CH Include Testing, Proper Documentation, Proper Implementation Review Grading Scheme for full marks Assignment 2: Ropes (100 marks) 1 2 Background A string is a sequence of characters and is often implemented as a fixed-length array of characters. Therefore, operations like concat, split, insert and remove can consume O(n) time where n is the total length of the string(s)1. One alternative implementation for very long strings is called a rope. A rope is an augmented binary tree whose leaf nodes represent parts of the overall string (see example on the last page). In this example, each node is augmented with an integer that represents the length of the string in its left subtree. However, to ensure that concatenation runs in O(1) time, it may be better to store the total length rooted at a particular node. Why? One of the big advantages of the rope data structure is its support of immutable strings. An immutable string is one that cannot be modified. Therefore, any modifications result in the creation of a new string as in C#. However, until a modification is done, only one copy of the string is necessary. As soon as the string is modified, the changes are made and a new string is created. This is known as copy- 3 Type here to search Ps DEV C+ ENG 10037 AM US 3/4/2021 Fiverr / sana_fiaz / Buyer Request X Asign2 ropess.pdf X C Get Homework Help With Chegg X In C++ Your Task Is To Design, Im x + 0 X C File C:/Users/sehar/Downloads/Asign2%20ropess.pdf Paused !!! Apps Shanes Tools All Hashtag - Hasht... Verified Email list | L... Instagram Money C... The Notation S[i, J)... = Asign2 ropess.pdf 2 / 4 100% + Requirements Your task is to design, implement, test, and document the following methods for the Rope class. The notation S[i,j] is used to represent the substring that begins at index i and ends at index j. Assume as well that the maximum size of a leaf substring is 10. 1 Rope(): Create an empty rope (1 mark). Rope(string S): Create a balanced rope from a given string S (8 marks). Rope Concatenate (Rope R1, Rope R2): Return the concatenation of ropes R1 and R2 (4 marks). void Split(int i, Rope R1, Rope R2): Return the two ropes split at index i (10 marks). void Insert(string S, int i): Insert string S at index i (6 marks). void Delete(int i, intj): Delete the substring S[i, j] (6 marks). string Substring(int i, int j) : Return the substring S[i, j] (8 marks). char CharAt(int i) : Return the character at index i (4 marks). int IndexOf(charc): Return the index of the first occurrence of character c (4 marks). void Reverse(): Reverse the string represented by the current rope (6 marks). int Length(): Return the length of the string (1 mark). string ToString(): Return the string represented by the current rope (4 marks). void PrintRope(): Print the augmented binary tree of the current rope (4 marks). 2 3 Type here to search Ps DEV C+ ENG 10037 AM US 3/4/2021 Fiverr / sana_fiaz / Buyer Request X Asign2 ropess.pdf X C Get Homework Help With Chegg X In C++ Your Task Is To Design, Im x + 0 X C File C:/Users/sehar/Downloads/Asign2%20ropess.pdf Paused !!! Apps Shanes Tools All Hashtag - Hasht... Verified Email list | L... Instagram Money C... The Notation S[i, J)... = Asign2 ropess.pdf 2 / 4 100% + Optimizations The ideal rope maintains a height of O(log n), but that can be quite a challenge. To help limit the height of the tree, try to implement the following optimizations. 1. After a Split, compress if possible the path back to the root (4 marks). 1 2. Combine left and right siblings whose total string length is 5 or less (4 marks). 3. Rebalance the rope periodically (4 marks). 2 3 Type here to search Ps DEV C+ ENG 10037 AM US 3/4/2021 Fiverr / sana_fiaz / Buyer Request X Asign2 ropess.pdf X C Get Homework Help With Chegg X In C++ Your Task Is To Design, Im X + 0 X C File C:/Users/sehar/Downloads/Asign2%20ropess.pdf Paused !!! Apps Shanes Tools All Hashtag - Hasht... Verified Email list | L... Instagram Money C... The Notation S[i, J)... = Asign2 ropess.pdf 3 / 4 100% + A Practice and Experience, Volume 25(12), December 1995, pp 1315-1330 Dale King, Ropes - Fast Strings, January 2, 2017 Rope (data structure), Wikipedia, retrieved on February 10, 2021 1 0 2 Hello my na mei Simon 3 Type here to search Ps DEV C+ ENG 10037 AM US 3/4/2021 Fiverr / sana_fiaz / Buyer Request X Asign2 ropess.pdf X C Get Homework Help With Chegg X In C++ Your Task Is To Design, Im X + 0 X C File C:/Users/sehar/Downloads/Asign2%20ropess.pdf Paused !!! Apps Shanes Tools All Hashtag - Hasht... Verified Email list | L... Instagram Money C... The Notation S[i, J)... = Asign2 ropess.pdf 1 / 4 100% + Use Visual Studio, CH Include Testing, Proper Documentation, Proper Implementation Review Grading Scheme for full marks Assignment 2: Ropes (100 marks) 1 2 Background A string is a sequence of characters and is often implemented as a fixed-length array of characters. Therefore, operations like concat, split, insert and remove can consume O(n) time where n is the total length of the string(s)1. One alternative implementation for very long strings is called a rope. A rope is an augmented binary tree whose leaf nodes represent parts of the overall string (see example on the last page). In this example, each node is augmented with an integer that represents the length of the string in its left subtree. However, to ensure that concatenation runs in O(1) time, it may be better to store the total length rooted at a particular node. Why? One of the big advantages of the rope data structure is its support of immutable strings. An immutable string is one that cannot be modified. Therefore, any modifications result in the creation of a new string as in C#. However, until a modification is done, only one copy of the string is necessary. As soon as the string is modified, the changes are made and a new string is created. This is known as copy- 3 Type here to search Ps DEV C+ ENG 10037 AM US 3/4/2021 Fiverr / sana_fiaz / Buyer Request X Asign2 ropess.pdf X C Get Homework Help With Chegg X In C++ Your Task Is To Design, Im x + 0 X C File C:/Users/sehar/Downloads/Asign2%20ropess.pdf Paused !!! Apps Shanes Tools All Hashtag - Hasht... Verified Email list | L... Instagram Money C... The Notation S[i, J)... = Asign2 ropess.pdf 2 / 4 100% + Requirements Your task is to design, implement, test, and document the following methods for the Rope class. The notation S[i,j] is used to represent the substring that begins at index i and ends at index j. Assume as well that the maximum size of a leaf substring is 10. 1 Rope(): Create an empty rope (1 mark). Rope(string S): Create a balanced rope from a given string S (8 marks). Rope Concatenate (Rope R1, Rope R2): Return the concatenation of ropes R1 and R2 (4 marks). void Split(int i, Rope R1, Rope R2): Return the two ropes split at index i (10 marks). void Insert(string S, int i): Insert string S at index i (6 marks). void Delete(int i, intj): Delete the substring S[i, j] (6 marks). string Substring(int i, int j) : Return the substring S[i, j] (8 marks). char CharAt(int i) : Return the character at index i (4 marks). int IndexOf(charc): Return the index of the first occurrence of character c (4 marks). void Reverse(): Reverse the string represented by the current rope (6 marks). int Length(): Return the length of the string (1 mark). string ToString(): Return the string represented by the current rope (4 marks). void PrintRope(): Print the augmented binary tree of the current rope (4 marks). 2 3 Type here to search Ps DEV C+ ENG 10037 AM US 3/4/2021 Fiverr / sana_fiaz / Buyer Request X Asign2 ropess.pdf X C Get Homework Help With Chegg X In C++ Your Task Is To Design, Im x + 0 X C File C:/Users/sehar/Downloads/Asign2%20ropess.pdf Paused !!! Apps Shanes Tools All Hashtag - Hasht... Verified Email list | L... Instagram Money C... The Notation S[i, J)... = Asign2 ropess.pdf 2 / 4 100% + Optimizations The ideal rope maintains a height of O(log n), but that can be quite a challenge. To help limit the height of the tree, try to implement the following optimizations. 1. After a Split, compress if possible the path back to the root (4 marks). 1 2. Combine left and right siblings whose total string length is 5 or less (4 marks). 3. Rebalance the rope periodically (4 marks). 2 3 Type here to search Ps DEV C+ ENG 10037 AM US 3/4/2021 Fiverr / sana_fiaz / Buyer Request X Asign2 ropess.pdf X C Get Homework Help With Chegg X In C++ Your Task Is To Design, Im X + 0 X C File C:/Users/sehar/Downloads/Asign2%20ropess.pdf Paused !!! Apps Shanes Tools All Hashtag - Hasht... Verified Email list | L... Instagram Money C... The Notation S[i, J)... = Asign2 ropess.pdf 3 / 4 100% + A Practice and Experience, Volume 25(12), December 1995, pp 1315-1330 Dale King, Ropes - Fast Strings, January 2, 2017 Rope (data structure), Wikipedia, retrieved on February 10, 2021 1 0 2 Hello my na mei Simon 3 Type here to search Ps DEV C+ ENG 10037 AM US 3/4/2021

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advances In Spatial And Temporal Databases 10th International Symposium Sstd 2007 Boston Ma Usa July 2007 Proceedings Lncs 4605

Authors: Dimitris Papadias ,Donghui Zhang ,George Kollios

2007th Edition

3540735399, 978-3540735397

More Books

Students also viewed these Databases questions