I have implemented a simple linked list but it does not seem to let go of memory when after deleting all the pointers I use. I was hoping somebody could point out what I am missing here. I am using Activity Monitor to view xcode's memory usage, maybe this is an innacurate method of viewing the memory usage? I'm not sure. Here is the code:
#include <iostream>
struct node {
int data;
node *next;
};
//function to traverse linked list
void traverse(node *root){
node *trav;
std::cout << "The list is as follows:\n";
//traverses through lists
trav = root;
do{
std::cout << (*trav).data << "\n";
trav = trav->next;
}while(trav != NULL);
std::cout << "\n";
delete trav;
}
void addToList(node *root){
node *tmp;
tmp = root;
if(tmp->next != NULL){
while(tmp->next !=0){
tmp = tmp->next;
}
}
//adds new nodes to list
for(int i = 0 ; i<1000000 ; i++){
tmp->next = new node;
tmp = tmp->next;
tmp->data = i;
}
tmp->next = NULL;
delete tmp;
}
int main(int argc, const char * argv[])
{
node *root; //this is the root node. it will not change
//sets up root node
root = new node; //root points to a node structure (this is a memory address)
root->next=NULL; //next pointer is now "0"
root->data = 5; //data in this node = 5
//print initial list
traverse(root);
//add to list
addToList(root);
//print new list
traverse(root);
delete root;
return 0;
}
===================EDIT - 9:28 AM EST, JAN 27================================
Thank you all for your great feedback here. I understand I have been doing quite a few things wrong (this is my introduction to c++ and dynamic memory allocation. I appreciate the help!)
Please find updated code below. I have run into the following issues: 1 -- again, real memory usage as reported by activity monitor is not being released from the process running this (running from terminal and xcode both show this). This happens when the below failure occurs, but also when i set the for loop in addToList to loop well below 65514. --> FIXED - this is no longer a question (was missing a pair of brackets, causing my code to not delete properly. oops!)
2 -- at the node where data = 65514, I am getting: EXC_BAD_ACCESS (code 2) on the first line of ~node -- why? Xcode gives the following:
Exception State Registers
trapno unsigned int
err unsigned int
faultvaddr unsigned long
Floating Point Registers
fctrl unsigned short
fstat unsigned short
ftag unsigned char
fop unsigned short
fioff unsigned int
fiseg unsigned short
fooff unsigned int
foseg unsigned short
mxcsr unsigned int
mxcsrmask unsigned int
stmm0 <invalid>
stmm1 <invalid>
stmm2 <invalid>
stmm3 <invalid>
stmm4 <invalid>
stmm5 <invalid>
stmm6 <invalid>
stmm7 <invalid>
xmm0 <invalid>
xmm1 <invalid>
xmm2 <invalid>
xmm3 <invalid>
xmm4 <invalid>
xmm5 <invalid>
xmm6 <invalid>
xmm7 <invalid>
xmm8 <invalid>
xmm9 <invalid>
xmm10 <invalid>
xmm11 <invalid>
xmm12 <invalid>
xmm13 <invalid>
xmm14 <invalid>
xmm15 <invalid>
General Purpose Registers
rax unsigned long
rbx unsigned long 0x0000000000000000
rcx unsigned long
rdx unsigned long
rdi unsigned long
rsi unsigned long
rbp unsigned long 0x00007fff6ca0c210
rsp unsigned long 0x00007fff6ca0c1c0
r8 unsigned long
r9 unsigned long
r10 unsigned long
r11 unsigned long
r12 unsigned long 0x0000000000000000
r13 unsigned long 0x0000000000000000
r14 unsigned long 0x0000000000000000
r15 unsigned long 0x0000000000000000
rip unsigned long 0x000000010d60cb96
rflags unsigned long
cs unsigned long
fs unsigned long
gs unsigned long
I presume this has something to do with the limit of an unsigned short, as seen in some of the registers, however, I am not using an unsigned short. ??!?!
Here is my current code:
#include <iostream>
struct node {
long data;
node *next;
node():next(NULL){} //just to be safe, initialize as null to start
//destructor used to clean up list nodes
~node(){
std::cout << data << " ";
if(next != NULL){
std::cout << data << ": deleted\n";
delete next;
next = NULL;
}
}
};
//function to traverse linked list
void traverse(node *root){
node *trav;
std::cout << "The list is as follows:\n";
//traverses through lists
trav = root;
do{
std::cout << (*trav).data << "\n";
trav = trav->next;
}while(trav != NULL);
std::cout << "\n";
}
void addToList(node *root){
node *tmp;
tmp = root;
if(tmp->next != NULL){
while(tmp->next !=0){
tmp = tmp->next;
}
}
//adds new nodes to list
for(long i = 0 ; i<100000 ; i++){
tmp->next = new node;
tmp = tmp->next;
tmp->data = i;
}
tmp->next = NULL;
}
int main(int argc, const char * argv[])
{
node *root; //this is the root node. it will not change
//sets up root node
root = new node; //root points to a node structure (this is a memory address)
root->next=NULL; //next pointer is now "0"
root->data = 5; //data in this node = 5
//print initial list
//traverse(root);
//add to list
addToList(root);
//print new list
//traverse(root);
delete root;
return 0;
}


deletepointers that you have defined. That is not true, the pointers themselves have automatic storage duration within your functions. You should only everdeletethings that have a matchingnew. – us2012 Jan 26 at 17:24delete root;) will, in fact, delete all nodes forward-linked to that one (i.e. its entirenextchain)? The answer to that question will significantly alter the answer you get here. – WhozCraig Jan 27 at 2:32