vote up 4 vote down star

Hi

I haven't been writing C for very long, and so I'm not sure about how I should go about doing these sorts of recursive things... I would like each cell to contain another cell, but I get an error along the lines of "field 'child' has incomplete type". What's up?

typedef struct Cell {
  bool isParent;
  Cell child;
} Cell;

Thanks,

z.

PS (Ziggy is also clearly confused by typedef: he has typedefed Cell to Cell and wonders why?)

flag

PS Actually it typedefs "struct Cell" to "Cell" (that's a common pattern) – David Feb 26 at 1:10
And it is automatic in C++. – Jonathan Leffler Feb 26 at 1:24
Please retag to C++ if that was your intent (I'm assuming it was since you accepted an answer that won't work in C and you used bool (although that could be typedef'ed in C as well)). – paxdiablo Feb 26 at 1:34
he's probably using a C++ compiler. he should also be using _Bool if it's really C. – nabiy Feb 26 at 1:52
He should be using int if it's really C :-) – paxdiablo Feb 26 at 2:04
show 1 more comment

4 Answers

vote up 12 vote down check

Clearly a Cell cannot contain another cell as it becomes a never-ending recursion.

However a Cell CAN contain a pointer to another cell.

typedef struct Cell {
  bool isParent;
  struct Cell* child;
} Cell;
link|flag
vote up 1 vote down

From the theoretical point of view, Languages can only support self-referential structures not self-inclusive structures.

link|flag
From the practical point of view, how big would such an instance of 'struct Cell' actually be? – Marsh Ray Jul 29 at 19:23
vote up 1 vote down

There is sort of a way around this:

struct Cell {
  bool isParent;
  struct Cell* child;
};

struct Cell;
typedef struct Cell Cell;

If you declare it like this, it properly tells the compiler that struct Cell and plain-ol'-cell are the same. So you can use Cell just like normal. Still have to use struct Cell inside of the initial declaration itself though.

link|flag
vote up 1 vote down

In C (as opposed to C++ where it may be possible, I haven't checked), you cannot reference the typedef that you're creating withing the structure itself. You have to use the structure name, as in the following test program:

#include <stdio.h>
#include <stdlib.h>

typedef struct Cell {
  int cellSeq;
  struct Cell* next; /* tCell *next will not work here */
} tCell;

int main(void) {
    int i;
    tCell *curr;
    tCell *first;
    tCell *last;

    /* Construct linked list, 100 down to 80. */

    first = malloc (sizeof (tCell));
    last = first;
    first->cellSeq = 100;
    first->next = NULL;
    for (i = 0; i < 20; i++) {
        curr = malloc (sizeof (tCell));
        curr->cellSeq = last->cellSeq - 1;
        curr->next = NULL;
        last->next = curr;
        last = curr;
    }

    /* Walk the list, printing sequence numbers. */

    curr = first;
    while (curr != NULL) {
        printf ("Sequence = %d\n", curr->cellSeq);
        curr = curr->next;
    }

    return 0;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.