PDA

View Full Version : C new node



jmwalloh
May 5th, 2007, 11:18 PM
Hi,can anyone explain how the call for a new node in c works

jespdj
May 5th, 2007, 11:40 PM
What kind of node are you talking about?

phossal
May 6th, 2007, 12:41 PM
What kind of node are you talking about?

Nobody nodes. :)

Wybiral
May 6th, 2007, 08:12 PM
Nobody nodes. :)

lol

I can only assume you mean some kind of ADT, maybe a stack, linked list, binary tree?

If thats the case... Bad news... There is no C function for it. You have to write this stuff yourself.

It's not that hard, you just have to be pretty comfortable with pointers.