B
Borked Pseudo Mailed
Bill Cunningham said:
Maybe not the best choice of names for a tree node, but
perfect if you want to use a doubly-linked list to model
an elevator in a shopping mall.
Yours,
Han from China
struct node {
int count;
char *name;
double price;
struct node *punode;
struct node *pdnode;
};
Maybe not the best choice of names for a tree node, but
perfect if you want to use a doubly-linked list to model
an elevator in a shopping mall.
Yours,
Han from China