summaryrefslogtreecommitdiffstats
path: root/tree.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2019-10-16 07:36:27 -0700
committerKaz Kylheku <kaz@kylheku.com>2019-10-16 07:36:27 -0700
commitbdc7277d09377f87319e0c27de40210b0212fabc (patch)
tree82f310bcb94d82c8db838d7dec41e380251bfa2f /tree.c
parentafbca6b306ddd07e84c44f4d47bd04ddd3cada86 (diff)
downloadtxr-bdc7277d09377f87319e0c27de40210b0212fabc.tar.gz
txr-bdc7277d09377f87319e0c27de40210b0212fabc.tar.bz2
txr-bdc7277d09377f87319e0c27de40210b0212fabc.zip
tree: copy-search-tree function.
* lib.c (copy): Handle tree objects via copy_search_tree. * tree.c (deep_copy_tnode): New static function. (copy_search_tree): New function. (tree_init): copy-search-tree intrinsic registered. * tree.h (copy_search_tree): Declared. * txr.1: Documented copy-search-tree, and copy function's use thereof.
Diffstat (limited to 'tree.c')
-rw-r--r--tree.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/tree.c b/tree.c
index 70e43158..11cc612e 100644
--- a/tree.c
+++ b/tree.c
@@ -637,6 +637,27 @@ static val tree_construct(val opts, val keys)
return tree(keys, key_fn, less_fn, equal_fn);
}
+static val deep_copy_tnode(val node)
+{
+ if (node == nil)
+ return nil;
+ return tnode(node->tn.key,
+ deep_copy_tnode(node->tn.left),
+ deep_copy_tnode(node->tn.right));
+}
+
+val copy_search_tree(val tree)
+{
+ val self = lit("copy-search-tree");
+ struct tree *ntr = coerce(struct tree *, malloc(sizeof *ntr));
+ struct tree *otr = coerce(struct tree *, cobj_handle(self, tree, tree_s));
+ val nroot = deep_copy_tnode(otr->root);
+ val ntree = cobj(coerce(mem_t *, ntr), tree_s, &tree_ops);
+ *ntr = *otr;
+ ntr->root = nroot;
+ return ntree;
+}
+
val treep(val obj)
{
return tnil(type(obj) == COBJ && obj->co.cls == tree_s);
@@ -711,6 +732,7 @@ void tree_init(void)
reg_fun(intern(lit("copy-tnode"), user_package), func_n1(copy_tnode));
reg_fun(tree_s, func_n4o(tree, 0));
reg_fun(tree_construct_s, func_n2(tree_construct));
+ reg_fun(intern(lit("copy-search-tree"), user_package), func_n1(copy_search_tree));
reg_fun(intern(lit("treep"), user_package), func_n1(treep));
reg_fun(intern(lit("tree-insert-node"), user_package), func_n2(tree_insert_node));
reg_fun(intern(lit("tree-insert"), user_package), func_n2(tree_insert));