¡@

Home 

c++ Programming Glossary: addnode

Simple C++ Linked List

http://stackoverflow.com/questions/1095954/simple-c-linked-list

but trying to use delete p at the end of linkedList addNode results in a segmentation fault at runtime. Just curious if.. linkedList Node head public linkedList head NULL void addNode int value Node p if head NULL head new Node value NULL else.. cout p data n p p next int main void linkedList test test.addNode 4 test.addNode 76 test.addNode 12 test.print return 0 c linked..

reverse a linked list? [duplicate]

http://stackoverflow.com/questions/2887600/reverse-a-linked-list

namespace std struct node int number node next node A void addNode node listpointer int num node temp temp new node temp number.. next temp temp next listpointer temp int main A NULL addNode A 1 addNode A 2 addNode A 3 while true if A NULL break cout.. temp next listpointer temp int main A NULL addNode A 1 addNode A 2 addNode A 3 while true if A NULL break cout A number endl..