
算法
Shane-Lau
移动客户端开发者
展开
-
二分查找算法----递归&&非递归
二分查找(递归与非递归)1.递归[cpp] view plain copy print? int BinSearch(int Array[],int low,int high,int key/*要找的值*/) { if (low<=high) { int mid = (low+high)/2; if(key == Array[mid])转载 2016-03-14 22:10:45 · 245 阅读 · 0 评论 -
Ubuntu上TensorFlow配置教程
Ubuntu上配置TensorFlow Ubuntu:版本 14.0.4 CUDA: 8.0 TensorFlow 官方配置教程 :https://www.tensorflow.org/install/install_linux#python_34CUDA官方配置教程http://docs.nvidia.com/cuda/cuda-installation-guide-linux/#axzz4VZn原创 2017-03-07 10:24:28 · 878 阅读 · 0 评论