博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
字符串的拷贝、二叉树的拷贝
阅读量:6097 次
发布时间:2019-06-20

本文共 704 字,大约阅读时间需要 2 分钟。

char* strcpy(char* strDest,const char* strSrc){    assert((strDest != NULL)&&(strSrc != NULL));    char* adress=strDest;//记录strDest的首位置    while(strSrc !='\0')    {        *strDest++=*strSrc++;//不是strDest++=strSrc++    }    return adress;//返回strDest的首位置}#define IS_FULL(ptr) (!(ptr))node* treecpy(node* original){    if(original==NULL)    {        return NULL;    }else{    node* newNode=(node*)malloc(sizeof(node));    if(IS_FULL(newNode)){    printf("The memory is full.\n");    exit(1);    }    newNode->data=original->data;    newNode->left=treecpy(original->left);    newNode->right=treecpy(original->right);    return newNode;    }}

转载于:https://www.cnblogs.com/zjhnl/archive/2012/04/11/2442347.html

你可能感兴趣的文章
(转)HTML的代码(从朋友那转的,看着觉得会有用就转了)
查看>>
eclipse中将一个项目作为library导入另一个项目中
查看>>
Go语言学习(五)----- 数组
查看>>
Android源码学习之观察者模式应用
查看>>
Content Provider的权限
查看>>
416. Partition Equal Subset Sum
查看>>
centos7.0 64位系统安装 nginx
查看>>
数据库运维平台~自动化上线审核需求
查看>>
注解开发
查看>>
如何用 Robotframework 来编写优秀的测试用例
查看>>
Django之FBV与CBV
查看>>
Vue之项目搭建
查看>>
app内部H5测试点总结
查看>>
Docker - 创建支持SSH服务的容器镜像
查看>>
[TC13761]Mutalisk
查看>>
三级菜单
查看>>
Data Wrangling文摘:Non-tidy-data
查看>>
加解密算法、消息摘要、消息认证技术、数字签名与公钥证书
查看>>
while()
查看>>
常用限制input的方法
查看>>