One of the most common operations on strings is appending or concatenation. Appending to the end of a string when the string is stored in the traditional manner (i.e. an array of characters) would take a minimum of O(n) time (where n is the length of the original string).
We can reduce time taken by append using Ropes Data Structure.
Ropes Data Structure
A Rope is a binary tree structure where each node except the leaf nodes, contains the number of characters present to the left of that node. Leaf nodes contain the actual string broken into substrings (size of these substrings can be decided by the user).
Consider the image below.

The image shows how the string is stored in memory. Each leaf node contains substrings of the original string and all other nodes contain the number of characters present to the left of that node. The idea behind storing the number of characters to the left is to minimise the cost of finding the character present at i-th position.
Advantages
1. Ropes drastically cut down the cost of appending two strings.
2. Unlike arrays, ropes do not require large contiguous memory allocations.
3. Ropes do not require O(n) additional memory to perform operations like insertion/deletion/searching.
4. In case a user wants to undo the last concatenation made, he can do so in O(1) time by just removing the root node of the tree.
Disadvantages
1. The complexity of source code increases.
2. Greater chances of bugs.
3. Extra memory required to store parent nodes.
4. Time to access i-th character increases.
Now let’s look at a situation that explains why Ropes are a good substitute to monolithic string arrays.
Given two strings a[] and b[]. Concatenate them in a third string c[].
Examples:
Input : a[] = "This is ", b[] = "an apple"
Output : "This is an apple"
Input : a[] = "This is ", b[] = "geeksforgeeks"
Output : "This is geeksforgeeks"
Method 1 (Naive method)
We create a string c[] to store concatenated string. We first traverse a[] and copy all characters of a[] to c[]. Then we copy all characters of b[] to c[].
Implementation:
C++
#include <iostream>
using namespace std;
void concatenate( char a[], char b[], char c[],
int n1, int n2)
{
int i;
for (i=0; i<n1; i++)
c[i] = a[i];
for ( int j=0; j<n2; j++)
c[i++] = b[j];
c[i] = '\0' ;
}
int main()
{
char a[] = "Hi This is geeksforgeeks. " ;
int n1 = sizeof (a)/ sizeof (a[0]);
char b[] = "You are welcome here." ;
int n2 = sizeof (b)/ sizeof (b[0]);
char c[n1 + n2 - 1];
concatenate(a, b, c, n1, n2);
for ( int i=0; i<n1+n2-1; i++)
cout << c[i];
return 0;
}
|
Java
class GFG {
static void concatenate( char a[], char b[], char c[],
int n1, int n2) {
int i;
for (i = 0 ; i < n1; i++) {
c[i] = a[i];
}
for ( int j = 0 ; j < n2; j++) {
c[i++] = b[j];
}
}
public static void main(String[] args) {
char a[] = "Hi This is geeksforgeeks. " .toCharArray();
int n1 = a.length;
char b[] = "You are welcome here." .toCharArray();
int n2 = b.length;
char c[] = new char [n1 + n2];
concatenate(a, b, c, n1, n2);
for ( int i = 0 ; i < n1 + n2 - 1 ; i++) {
System.out.print(c[i]);
}
}
}
|
Python3
def concatenate(a, b, c, n1, n2):
i = - 1
for i in range (n1):
c[i] = a[i]
for j in range (n2):
c[i] = b[j]
i + = 1
if __name__ = = "__main__" :
a = "Hi This is geeksforgeeks. "
n1 = len (a)
b = "You are welcome here."
n2 = len (b)
a = list (a)
b = list (b)
c = [ 0 ] * (n1 + n2 - 1 )
concatenate(a, b, c, n1, n2)
for i in c:
print (i, end = "")
|
C#
using System;
public class GFG {
static void concatenate( char []a, char []b, char []c,
int n1, int n2) {
int i;
for (i = 0; i < n1; i++) {
c[i] = a[i];
}
for ( int j = 0; j < n2; j++) {
c[i++] = b[j];
}
}
public static void Main() {
char []a = "Hi This is geeksforgeeks. " .ToCharArray();
int n1 = a.Length;
char []b = "You are welcome here." .ToCharArray();
int n2 = b.Length;
char []c = new char [n1 + n2];
concatenate(a, b, c, n1, n2);
for ( int i = 0; i < n1 + n2 - 1; i++) {
Console.Write(c[i]);
}
}
}
|
Javascript
function concatenate(a, b, c, n1, n2) {
let i;
for (i=0; i<n1; i++)
c[i] = a[i];
for (let j=0; j<n2; j++)
c[i++] = b[j];
c[i] = '\0' ;
}
function main() {
let a = "Hi This is geeksforgeeks. " ;
let n1 = a.length;
let b = "You are welcome here." ;
let n2 = b.length;
let c = Array(n1 + n2 - 1);
concatenate(a, b, c, n1, n2);
for (let i=0; i<n1+n2-1; i++)
console.log(c[i]);
return 0;
}
main();
|
Output:
Hi This is geeksforgeeks. You are welcome here
Time complexity : O(max(n1, n2))
Auxiliary Space: O(n1 + n2)
Now let’s try to solve the same problem using Ropes.
Method 2 (Rope structure method)
This rope structure can be utilized to concatenate two strings in constant time.
1. Create a new root node (that stores the root of the new concatenated string)
2. Mark the left child of this node, the root of the string that appears first.
3. Mark the right child of this node, the root of the string that appears second.
And that’s it. Since this method only requires to make a new node, it’s complexity is O(1).
Consider the image below (Image source : https://en.wikipedia.org/wiki/Rope_(data_structure))

Implementation:
CPP
#include <bits/stdc++.h>
using namespace std;
const int LEAF_LEN = 2;
class Rope
{
public :
Rope *left, *right, *parent;
char *str;
int lCount;
};
void createRopeStructure(Rope *&node, Rope *par,
char a[], int l, int r)
{
Rope *tmp = new Rope();
tmp->left = tmp->right = NULL;
tmp->parent = par;
if ((r-l) > LEAF_LEN)
{
tmp->str = NULL;
tmp->lCount = (r-l)/2;
node = tmp;
int m = (l + r)/2;
createRopeStructure(node->left, node, a, l, m);
createRopeStructure(node->right, node, a, m+1, r);
}
else
{
node = tmp;
tmp->lCount = (r-l);
int j = 0;
tmp->str = new char [LEAF_LEN];
for ( int i=l; i<=r; i++)
tmp->str[j++] = a[i];
}
}
void printstring(Rope *r)
{
if (r==NULL)
return ;
if (r->left==NULL && r->right==NULL)
cout << r->str;
printstring(r->left);
printstring(r->right);
}
void concatenate(Rope *&root3, Rope *root1, Rope *root2, int n1)
{
Rope *tmp = new Rope();
tmp->parent = NULL;
tmp->left = root1;
tmp->right = root2;
root1->parent = root2->parent = tmp;
tmp->lCount = n1;
tmp->str = NULL;
root3 = tmp;
}
int main()
{
Rope *root1 = NULL;
char a[] = "Hi This is geeksforgeeks. " ;
int n1 = sizeof (a)/ sizeof (a[0]);
createRopeStructure(root1, NULL, a, 0, n1-1);
Rope *root2 = NULL;
char b[] = "You are welcome here." ;
int n2 = sizeof (b)/ sizeof (b[0]);
createRopeStructure(root2, NULL, b, 0, n2-1);
Rope *root3 = NULL;
concatenate(root3, root1, root2, n1);
printstring(root3);
cout << endl;
return 0;
}
|
Java
import java.util.ArrayList;
class Rope {
Rope left;
Rope right;
Rope parent;
ArrayList<Character> str;
int lCount;
Rope()
{
this .left = null ;
this .right = null ;
this .parent = null ;
this .str = new ArrayList<Character>();
this .lCount = 0 ;
}
}
class Main {
static final int LEAF_LEN = 2 ;
static Rope createRopeStructure(Rope node, Rope par,
String a, int l, int r)
{
Rope tmp = new Rope();
tmp.left = tmp.right = null ;
tmp.parent = par;
if ((r - l) > LEAF_LEN) {
tmp.str = null ;
tmp.lCount = ( int )Math.floor((r - l) / 2 );
node = tmp;
int m = ( int )Math.floor((l + r) / 2 );
node.left = createRopeStructure(node.left, node,
a, l, m);
node.right = createRopeStructure(
node.right, node, a, m + 1 , r);
}
else {
node = tmp;
tmp.lCount = (r - l);
int j = 0 ;
for ( int i = l; i <= r; i++) {
tmp.str.add(a.charAt(i));
}
}
return node;
}
static void printstring(Rope r)
{
if (r == null ) {
return ;
}
if (r.left == null && r.right == null ) {
for ( char c : r.str) {
System.out.print(c);
}
}
printstring(r.left);
printstring(r.right);
}
static Rope concatenate(Rope root3, Rope root1,
Rope root2, int n1)
{
Rope tmp = new Rope();
tmp.left = root1;
tmp.right = root2;
root1.parent = tmp;
root2.parent = tmp;
tmp.lCount = n1;
tmp.str = null ;
root3 = tmp;
return root3;
}
public static void main(String[] args)
{
Rope root1 = null ;
String a = "Hi This is geeksforgeeks. " ;
int n1 = a.length();
root1 = createRopeStructure(root1, null , a, 0 ,
n1 - 1 );
Rope root2 = null ;
String b = "You are welcome here." ;
int n2 = b.length();
root2 = createRopeStructure(root2, null , b, 0 ,
n2 - 1 );
Rope root3 = null ;
root3 = concatenate(root3, root1, root2, n1);
printstring(root3);
}
}
|
Python3
LEAF_LEN = 2
class Rope:
def __init__( self ):
self .left = None
self .right = None
self .parent = None
self . str = [ 0 ] * (LEAF_LEN + 1 )
self .lCount = 0
def createRopeStructure(node, par, a, l, r):
tmp = Rope()
tmp.left = tmp.right = None
tmp.parent = par
if (r - l) > LEAF_LEN:
tmp. str = None
tmp.lCount = (r - l) / / 2
node = tmp
m = (l + r) / / 2
createRopeStructure(node.left, node, a, l, m)
createRopeStructure(node.right, node, a, m + 1 , r)
else :
node = tmp
tmp.lCount = (r - l)
j = 0
for i in range (l, r + 1 ):
print (a[i],end = "")
tmp. str [j] = a[i]
j = j + 1
print (end = "")
return node
def printstring(r):
if r = = None :
return
if r.left = = None and r.right = = None :
pass
printstring(r.left)
printstring(r.right)
def concatenate(root3, root1, root2, n1):
tmp = Rope()
tmp.left = root1
tmp.right = root2
root1.parent = tmp
root2.parent = tmp
tmp.lCount = n1
tmp. str = None
root3 = tmp
return root3
root1 = None
a = "Hi This is geeksforgeeks. "
n1 = len (a)
root1 = createRopeStructure(root1, None , a, 0 , n1 - 1 )
root2 = None
b = "You are welcome here."
n2 = len (b)
root2 = createRopeStructure(root2, None , b, 0 , n2 - 1 )
root3 = None
root3 = concatenate(root3, root1, root2, n1)
printstring(root3)
print ()
|
Javascript
const LEAF_LEN = 2;
class Rope
{
constructor(){
this .left = null ;
this .right = null ;
this .parent = null ;
this .str = new Array();
this .lCount = 0;
}
}
function createRopeStructure(node, par, a, l, r)
{
let tmp = new Rope();
tmp.left = tmp.right = null ;
tmp.parent = par;
if ((r-l) > LEAF_LEN)
{
tmp.str = null ;
tmp.lCount = Math.floor((r-l)/2);
node = tmp;
let m = Math.floor((l + r)/2);
createRopeStructure(node.left, node, a, l, m);
createRopeStructure(node.right, node, a, m+1, r);
}
else
{
node = tmp;
tmp.lCount = (r-l);
let j = 0;
for (let i=l; i<=r; i++){
document.write(a[i]);
tmp.str[j++] = a[i];
}
document.write( "\n" );
}
return node;
}
function printstring(r)
{
if (r== null )
return ;
if (r.left== null && r.right== null ){
}
printstring(r.left);
printstring(r.right);
}
function concatenate(root3, root1, root2, n1)
{
let tmp = new Rope();
tmp.left = root1;
tmp.right = root2;
root1.parent = tmp;
root2.parent = tmp;
tmp.lCount = n1;
tmp.str = null ;
root3 = tmp;
return root3;
}
let root1 = null ;
let a = "Hi This is geeksforgeeks. " ;
let n1 = a.length;
root1 = createRopeStructure(root1, null , a, 0, n1-1);
let root2 = null ;
let b = "You are welcome here." ;
let n2 = b.length;
root2 = createRopeStructure(root2, null , b, 0, n2-1);
let root3 = null ;
root3 = concatenate(root3, root1, root2, n1);
printstring(root3);
console.log();
|
C#
using System;
using System.Collections.Generic;
class Rope
{
public Rope left;
public Rope right;
public Rope parent;
public List< char > str;
public int lCount;
public Rope()
{
this .left = null ;
this .right = null ;
this .parent = null ;
this .str = new List< char >();
this .lCount = 0;
}
}
class MainClass
{
static readonly int LEAF_LEN = 2;
static Rope CreateRopeStructure( ref Rope node, Rope par, string a, int l, int r)
{
Rope tmp = new Rope();
tmp.left = tmp.right = null ;
tmp.parent = par;
if ((r - l) > LEAF_LEN)
{
tmp.str = null ;
tmp.lCount = ( int )Math.Floor((r - l) / 2.0);
node = tmp;
int m = ( int )Math.Floor((l + r) / 2.0);
node.left = CreateRopeStructure( ref node.left, node, a, l, m);
node.right = CreateRopeStructure( ref node.right, node, a, m + 1, r);
}
else
{
node = tmp;
tmp.lCount = (r - l);
for ( int i = l; i <= r; i++)
{
tmp.str.Add(a[i]);
}
}
return node;
}
static void PrintString(Rope r)
{
if (r == null )
{
return ;
}
if (r.left == null && r.right == null )
{
foreach ( char c in r.str)
{
Console.Write(c);
}
}
PrintString(r.left);
PrintString(r.right);
}
static Rope Concatenate(Rope root3, Rope root1, Rope root2, int n1)
{
Rope tmp = new Rope();
tmp.left = root1;
tmp.right = root2;
root1.parent = tmp;
root2.parent = tmp;
tmp.lCount = n1;
tmp.str = null ;
root3 = tmp;
return root3;
}
public static void Main( string [] args)
{
Rope root1 = null ;
string a = "Hi This is geeksforgeeks. " ;
int n1 = a.Length;
root1 = CreateRopeStructure( ref root1, null , a, 0, n1 - 1);
Rope root2 = null ;
String b = "You are welcome here." ;
int n2 = b.Length;
root2 = CreateRopeStructure( ref root2, null , b, 0,
n2 - 1);
Rope root3 = null ;
root3 = Concatenate(root3, root1, root2, n1);
PrintString(root3);
}
}
|
Output:
Hi This is geeksforgeeks. You are welcome here.
Time Complexity: O(1)
Auxiliary Space: O(1)
This article is contributed by Akhil Goel. If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.