• 大小: 45KB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2021-01-01
  • 语言: C/C++
  • 标签: C++  算法  数据结构  

资源简介

20种数据结构和算法的C++实现,详见博客:http://blog.csdn.net/caoshangpa/article/details/78557334

资源截图

代码片段和文件信息

/*******************************************************************************
*
* FileName : Auto_ptr.cpp
* Comment  : test code for auto pointer
* Version  : 1.0
* Author   : haibindev.cnblogs.com
* Date     : 2007-10-10 1:25
*
*******************************************************************************/

#include 
#include “Auto_ptr.h“

int main()
{
int *a = new int(5);
Auto_ptr p(a);
std::cout<<*p<<“\n“;
return 0;
}

评论

共有 条评论