xor-linkedlist

Problem in understanding XOR linked list.

I am reading XOR linked list (from Wikipedia).But I am having some problems in understanding it. I am not getting following paragraph. To start traversing the list in either direction from some point, you need the address of two consecutive items, not just one. If the addresses of the two consecutive items are reversed, you will en...

Problems with Linked List in C

Hey everyone, I am new to C and I am working on an XOR linked list for a project. I have most of the code done, but I can't seem to get the delete function of the list to work properly. It seems able to delete some numbers, but not any number you pass into the function. Could anyone experienced with C take a look and possibly point out w...