- 博客(7)
- 收藏
- 关注
原创 Ubuntu16.04 构建opencl+caffe
1. basic settingssudo apt update && sudo apt upgrade to update your system.sudo apt install python-pipsudo apt install vimsudo apt install gitsudo apt install cmake2. Install Intel OpenCL SD
2017-12-14 19:03:30 828
原创 编译caffe on Ubuntu16.04
1. 确保系统内已经存在Cuda8.0方法:在、usr/local/cuda/下找到sample,进入目录,键入make all编译完成后,找到device_query这个执行文件并运行。如果Cuda安装成功,会显示GPU相关信息2. 安装依赖包sudo apt-get install libprotobuf-dev libleveldb-dev libsnap
2017-12-12 13:47:49 225
原创 [Easy]C++ 第二期 7道
104. Maximum Depth of Binary Tree二叉树最大深度Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthes
2017-11-22 21:04:21 269
原创 C++ 自己动手写排序
全部给我死记硬背住!!!一、插入排序void InsertSort(int *arr, int arrLen){ for (int i = 1; i < arrLen; i++) { int tmp = arr[i]; int j = 0; for (j = i; j > 0 && tmp < arr[j-1]; j--)
2017-11-12 16:22:19 382
原创 面试编程知识+算法题总结(一)
一、C++中引用和指针的区别1. 指针是一个变量,存储的是一个地址,指向内存的一个存储单元;而引用跟原变量本质是一样的,只不过是原变量的一个别名2. 指针可以为const;引用不可为const3. 指针可以为多级;引用不可为多级;4. 指针可以为空;引用不可为空,并且定义的时候必须初始化5. 指针在初始化后可以改变;引用在初始化后不可改变6. sizeof引用得到的是对象的大小;而sizeof指针...
2017-07-19 14:19:34 282
原创 C++奇技淫巧(一):取位数,交换,比较,求均值
一、计算一个数转化成二进制后包含1的位数写法:判断x&(x-1)计算了几次程序:int func(int x){ int count = 0; while(x){ count++; x = x&(x - 1); } return count;}牛逼!!!————————————————二、编程风格
2017-07-15 14:58:14 17172
原创 [Easy]C++ 第一期 6道
400. Nth Digit正整数列的第n位数Find the nth digit of the infinite integer sequence 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ...Note:n is positive and will fit within the range of a 32-bit signed integer (n < 231...
2017-07-12 14:08:25 318
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人