Hi @ejkang62,
The problem in your code is that you implemented a loop within a loop, when it is not necesseary.
When the program enters "for (i=n1; ...)", it starts with the value n1 for i.
Then, for the same i value, k will get all values of the arr2 string.
To fix that I would do something like this:
1 2 3 4 5 6
|
size_t k=0;
for (size_t i=n1; i<n1+n2-1; i++)
{
result[i]=arr2[k];
k++;
}
|
That way you'll parse all n2 elements of arr2 and add them to result.
Also I don't know about the first instruction, "result[10000]={};". This sounds like you want to access the 10000th element of result.
Just to make sure, I'd try doing this:
And even better, if you want to have the minimum number of elements in result, do this:
1 2 3 4 5 6
|
result.resize(arr1.length()+arr2.length());
//or
int
length1=arr1->length(),
length2=arr2->length();
result->resize(length1+length2);
|
Also, I don't know what error it is that you're getting.
If this didn't solve it, could you say a little more about the problem?
Hope this helps.
EDIT:
Also, since you're using std::string object, it's for the best to use its overloaded operator.
Instead of:
You might want to do this:
This is concatenation, which makes the output WAY faster.