Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.67K
~401 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags
linked-list x 1
c++ x 1
1 Posted Topic
Re: xor linked list
class xll { public: int data; unsigned long link; }; class xlist { xll *head,*tail; xlist(){head = NULL;tail = NULL} void insert(int); }; void xlist :: insert (int ele) { xll *node = (xll*) malloc (sizeof(xll)); node->data = ele; xll *temp = head,*prev = NULL; while(temp != NULL) { next …
The End.