That still seg faults.... I have been running some tests and the insert( Temp->Item); makes it seg fault right away, but if i take that out the Temp = Temp->Succ; will run til the end of the set then seg fault...
There is a dummy node at the front of the set. So A.head->Succ really points to the first item in the set. Then i try and insert and it seg faults. The loop seg faults without the insert in there, but right when insert is called it seg faults. I tested the insert function outside of the copy constructor and it seems to work just fine.