CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: EdwardKes

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    14,072

    Re: Template list

    class List{
    private:
    int m_size;
    class Node{
    public:
    T* m_data;
    Node* m_next;
    Node* m_prev;
  2. Replies
    4
    Views
    14,072

    Template list

    Write your question here.
    Hello, I'm doing a homework aasignment on templates, and i have to build a list.
    The problem starts when i am trying to add elements to the list. For instance if i chose...
  3. Replies
    24
    Views
    5,348

    Re: Heap Corruption during run time.

    can't use the stl. it's a homework, so they want us to write everything by ourselves to practice.
  4. Replies
    24
    Views
    5,348

    Re: Heap Corruption during run time.

    thanks, so I don't need to delete the old one?
  5. Replies
    24
    Views
    5,348

    Heap Corruption during run time.

    Hello, I am having a problem with my code. I am trying to delete an array, after I created a bigger one, and copied all the values from the previous to the new one, but when i try to delete the old...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured