提问人:Саша Волотко 提问时间:11/18/2021 更新时间:11/18/2021 访问量:73
如何在没有 std 的情况下创建值数组和指针数组的副本?
How to create a copy of an array of values and an array of pointers without std?
问:
我不知道如何复制这个结构:
struct Node {
private:
int *keys_;
int min_degree_;
Node **children_;
int count_;
bool is_leaf_;
...
好吧,我明白了其中的一半:
Node(Node const &node) {
min_degree_ = node.min_degree_;
is_leaf_ = node.is_leaf_;
count_ = node.count_;
...
}
如何在没有 std 的情况下复制值 array(int *keys_) 和指针数组(Node **children_) 尚不清楚。必须删除原始对象,以便可以复制引用,尽管我不确定。
答: 暂无答案
评论