Forum: C Nov 19th, 2007 |
| Replies: 1 Views: 861 top-down 2-3-4 search tree Can anyone help me with the creation of this kind of tree?I tried something but it didn't work.:-/
thank you |
Forum: C++ Oct 25th, 2007 |
| Replies: 12 Views: 1,554 |
Forum: C++ Oct 25th, 2007 |
| Replies: 12 Views: 1,554 Re: xor linked list [QUOTE=Ptolemy;457374]>i found something but it has an error :"xor1001.cpp
>invalid conversion from `void*' to `link*' ".
You're compiling C as C++. C++ doesn't support implicit pointer conversions... |
Forum: C++ Oct 25th, 2007 |
| Replies: 12 Views: 1,554 Re: xor linked list i found something but it has an error :"xor1001.cpp invalid conversion from `void*' to `link*' ".
and i don't really understand the program
#include <stdio.h>
#include <stdlib.h>
... |
Forum: C++ Oct 25th, 2007 |
| Replies: 12 Views: 1,554 Re: xor linked list "XOR linked lists are a curious use of the bitwise exclusive disjunction (XOR) operation, here denoted by ⊕, to decrease storage requirements for doubly-linked lists. An ordinary doubly-linked list... |
Forum: C++ Oct 25th, 2007 |
| Replies: 12 Views: 1,554 xor linked list hi i need some help.
i have to do a linked list using XOR and i don't know how to do it.
thanks |