摘要: 本文适用于想在window下使用python 3 的童鞋,安装openCV 有问题的参考 一、你要确定自己的python版本是3.x,在命令行窗口输入python 本人使用的是python 3.6 二、需要下载和安装Microsoft Visual C++ 2015 Redistributable, 阅读全文
posted @ 2017-08-27 09:18 胡卫雄 阅读(13433) 评论(0) 推荐(0) 编辑
摘要: #include void SelectSort(int a[],int n){ int i,j,min,temp; for( i=0;i<n-1;i++ ){ min = i; for(j=i+1;j<n;j++) { if ( a[j] < a[min]){ min = j; ... 阅读全文
posted @ 2017-08-27 00:44 胡卫雄 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 代码: 阅读全文
posted @ 2017-08-27 00:21 胡卫雄 阅读(1431) 评论(0) 推荐(0) 编辑