在另一个struct中初始化并获取struct变量?

时间:2013-04-12 04:33:02

标签: c linux struct tree binary-search-tree

嘿伙计我有两个结构:一个是密钥对,另一个是节点。

typedef struct {
    char *key;
    void *value;
} VL;

typedef struct node{
    struct node *left;
    struct node *right;
    VL data;
} BST;

如何初始化节点结构并在里面添加VL结构? 这就是我到目前为止所做的:

    // Create new node
    struct node *temp = malloc(sizeof(node));
    temp->left = NULL;
    temp->right = NULL;

    struct VL *vl = malloc(sizeof(VL));
    vl->key = key;
    vl->value = &value;

    temp->data= *vl;

我还尝试过很多其他的东西,比如将temp-> data.key设置为key等,所有这些都会返回错误。所以我来这里寻求帮助:)。

另外,我如何从节点获取数据?

char *key = (char *)5;
void *val = "hello";
// create node with this key/val pair and insert into the tree, then print
printf("key = %d; value = %s\n", (int)head->data.key, (char*)head->data.value);

这样就够了吗?

谢谢!

1 个答案:

答案 0 :(得分:3)

VL data的内存被分配为node结构的一部分,不需要重新分配。

尝试:

struct node *temp = malloc(sizeof(node));
temp->left = NULL;
temp->right = NULL;
(temp->data).key = key;
(temp->data).value = &value;