0

C ++で簡単な四分木を作成したかったのですが、関数内で構造体の値を変更すると、値が元に戻ることがわかりました。また、再帰関数内で、作成されたデータの一部がグローバルになることはありません。どうすればよいですか?

#include <iostream>

struct a{
    unsigned int value;
    struct a * leaf[4];
};

void build(struct a root, unsigned int depth){

    depth++;

    root.value = 0;

    struct a leaf0;
    root.leaf[0] = &leaf0;
    struct a leaf1;
    root.leaf[1] = &leaf1;
    struct a leaf2;
    root.leaf[2] = &leaf2;
    struct a leaf3;
    root.leaf[3] = &leaf3;

    if (depth != 5) {
        build(*root.leaf[0], depth);
        build(*root.leaf[1], depth);
        build(*root.leaf[2], depth);
        build(*root.leaf[3], depth);
    }
}

int main(int argc, const char * argv[])
{
    struct a root;

    root.value = 364;

    build(root, 0);

    std::cout << root.value;
    return 0;
}
4

1 に答える 1

0

構造体のアドレスを関数に渡す必要があります(構造体へのポインターを受け入れる必要があります)。

void build(struct a *root, unsigned int depth) {  
  ...
}

int main(int argc, const char * argv[])    
  ...
  build(&root, 0);
}
于 2012-10-25T01:05:48.893 に答える