Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to work with an array of char pointers.
Let's say I dynamically declare such an array like so:

int numrows=100;  
char** array = new char*[numrows];  

And then I populate it by using getline to get strings from a file, converting the strings to char arrays, then setting a pointer in my array to point to said char array like so:

string entry;  
int i=0;
while (getline(file,entry)){  
  char* cstring = new char[entry.length()];  
  array[i]=strncpy(cstring,entry.c_str(),entry.length());  
  free(cstring);  
  i++;  
}

(this works, but is there a better way to do this?)
The problem is, I don't know how to grow the array once i becomes greater than numrows. I know how to do this for a single-dimensional array, but the two-dimensionality is throwing me off.

I'm thinking I should be able to grow it the way you would grow a single-dimension array, right?

if (i==numrows){  
  char** temp = new char*[numrows+numrows];  
  for (int j=0;j<i;j++){  
    char* cstring = new char[strlen(array[i])];  
    temp[i]=strncpy(cstrin,array[i],strlen(array[i]));  
    free(cstring);
  }
  delete [] array;
  array = temp;
}

So if the current array becomes full, make a second array that is twice the size of the current array and fill it with the contents of the current array. Then delete array and let array point to temp. I'm fine up to making temp the new array. I can get the contents of array into temp, but when I delete array and set array = temp, the contents of array aren't the contents of temp.

So my question is how can/should I be growing this dynamic array of char pointers?

share|improve this question
4  
Is there a particular reason why you are making this so painful on yourself and not just using a std::vector<std::string>? Also do not call free on something you have allocated with new. You must always deallocate with delete (or delete[]) when you allocate with new. Using free is undefined behavior. – Tyler McHenry Feb 16 '10 at 21:48
Well, once I get all the data read, I need to sort it based on sorting keys (i.e. from char 1 through 3); I started off using the string class, but it slowed my program down a lot whenever I had to compare two strings by parsing them into cstrings and comparing the specified region. – zebraman Feb 16 '10 at 21:52
1  
Upon reading this in depth, there's a whole lot of things wrong with this code. Reallocating arrays is the least of your problems. You need a fundamental review of how pointers work. – Tyler McHenry Feb 16 '10 at 21:52
5  
@zebraman, it would be a lot easier to learn how the members of std::string can help you with this task rather than trying to do these kinds of C-style acrobatics in C++. It would probably be best to post your sorting question as a separate question. – Tyler McHenry Feb 16 '10 at 21:53
1  
You should be using a std::vector of std::string, and then you should use std::sort. – Liz Albin Feb 16 '10 at 22:24
show 1 more comment

3 Answers

use std::vector - it is your friend

 std::vector<std::string> arr;
 while(getline(file, entry))
   {
       arr.push_back(entry);
  }

done

sort can be done using vector sort with custom compare

 bool less3(const std::string &s1, const std::string &s2)
 {
      return s1.compare(0, 3, s2, 0, 3) == 0;
 }

 std::sort(arr.begin(), arr.end(), less3);

I bet that less3 could be made more efficient but readability wins unless you really suffer

edit fixed as per nice comment from gman

share|improve this answer
@pm100 thanks, I wasn't aware of the substr() function until now. This will make things a lot easier. I have question about the error handling of substr, though. Lets say I have a string s="Hello"; it's length is 5. If I call s.substr(4,6) what would happen? – zebraman Feb 16 '10 at 22:03
@zebraman: It will clamp it. That is, you get "o". If index is >= size(), an out_of_range exception is thrown. – GManNickG Feb 16 '10 at 22:12
@pm100: Your comparison is less efficient than necessary. You're going to allocate room for 2 strings of size 3, copy the sub-strings into it, compare them, then delete the memory. Rather, use the compare function: return s1.compare(0, 3, s2, 0, 3) == 0; – GManNickG Feb 16 '10 at 22:14
@zeb - aha - exceptions, a whole new world awaits your discovery – pm100 Feb 16 '10 at 22:20
@GMan how does the compare function handle indexes out of range? – zebraman Feb 17 '10 at 0:40
show 1 more comment

Apart from the remarks by Tyler McHenry, and the fact that you should use the STL, the problem is most likely that you are freeing each cstring after having copied it. Perhaps you intended to free the original string instead?

  for (int j=0;j<i;j++){  
    char* cstring = new char[strlen(array[i])];  
    temp[i]=strncpy(cstring,array[i],strlen(array[i]));  
    delete[] array[i];
  }

When you first populate the array, DO NOT call free() on the string. First of all, you should use delete[], but more importantly, you still want to access that string later, right?

share|improve this answer
Indeed. This is for a class, and no STL is allowed. – zebraman Feb 16 '10 at 21:58
@zebraman I've tagged this with the "homework" tag. Please do so yourself in the future when posting problems from school. (What you posted is fine, though, since you showed what you had already tried) – Tyler McHenry Feb 16 '10 at 22:27

now i see you say that this is a class that does allow you to use STL. A class teaching c++ that forbids one of the major language features! - anyway passing along

You do not need to be copying the strings to resize the array , you just need to copy the pointers.

 if (i==numrows){  
   char** temp = new char*[numrows+numrows];  
   for (int j=0;j<i;j++){  
     temp[j]=array[j];
    }
    delete [] array;
    array = temp;
 }

i am sure there are still out by ones there - left as homework

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.