Search:

Type: Posts; User: Amoxaphobic

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    4,015

    Cool. Thank you so much for your help!

    Cool. Thank you so much for your help!
  2. Replies
    6
    Views
    1,654

    I have had issues with importing files from...

    I have had issues with importing files from different systems, or reloading removed files from a project. When loading the files, it's almost as if it's in a language that the compiler doesn't like...
  3. Replies
    5
    Views
    1,161

    LoL. I wasn't asking you to defend anything, and...

    LoL. I wasn't asking you to defend anything, and I totally understand your reasoning. I was simply saying that I liked it... you do know a lot. I am very glad that you are willing to help others out...
  4. Replies
    5
    Views
    1,161

    Awesome. I can always count on you Elysia. Thank...

    Awesome. I can always count on you Elysia. Thank you!

    BTW... I still liked your previous signature of "You know everything!" LoL.
  5. Replies
    4
    Views
    4,015

    Thanks for the reply. That helps, but let me see...

    Thanks for the reply.
    That helps, but let me see if I understand this...

    The code will run the for loops for every two elements (the call on itself will eventually lead to two elements which are...
  6. Replies
    5
    Views
    1,161

    Building a class in a single file

    I have a homework assignment to build a linked list that mimics the list library. I do understand how to do this, and I understand all the parts of the list. However, the homework assignment is...
  7. Replies
    4
    Views
    4,015

    Max SubSequence using recursion

    So I stumbled upon this code when trying to find the best way to obtain the max subsequence (mss).


    int mss(int* a, int left, int right){
    // If the array is a one element array, compare...
  8. Replies
    11
    Views
    1,681

    Right, back to the basics. Sorry for that. I...

    Right, back to the basics. Sorry for that.

    I got it... I have to refer to how it's made. In this particular case I have a ptr_buffer (this->ptr_buffer) which is where the pointer actually is. So...
  9. Replies
    11
    Views
    1,681

    So... I guess I'm a bit confused. Isn't that what...

    So... I guess I'm a bit confused. Isn't that what I had?

    Something to the extent of:
    delete [] this;
    *this = copiedStr;


    If I do that, I get an error? Sorry...
  10. Replies
    11
    Views
    1,681

    Okay, so if that's the case, how do I access it...

    Okay, so if that's the case, how do I access it (the m_str)? The function only passes the second string (the string in the which the "current" string will be). So, I guess that's where I am having...
  11. Replies
    11
    Views
    1,681

    Thank you for this. The only question I have is,...

    Thank you for this. The only question I have is, what is the "m_str"? Is that the current string?

    laserlight... thanks for your advice, but if I did that, wouldn't I still have to make a similar...
  12. Replies
    11
    Views
    1,681

    Operator = override

    I am trying to duplicate the string library (to learn it better... and I won't lie, it's for an assignment).

    But I am having trouble trying to override the = operator.

    Here is what I have:
    ...
Results 1 to 12 of 12