随笔分类 - C++
摘要:从wiki开始:http://en.wikipedia.org/wiki/Machine_learning今天看机器学习相关的文章,了解了一下opencv中机器学习功能比较多了 (http://docs.opencv.org/modules/ml/doc/ml.html)和KNIME Analyti...
阅读全文
摘要:1、现在对两个文件生成可执行文件//thanks.c#include int main(void){ printf("Hello World\n"); thanks_2();}View Code//thanks_2.c#include int thanks_2(void){ pri...
阅读全文
摘要:#include #include int main(void) { int sum = 0; time_t t,t1; time(&t); //t = time(NULL); std::cout<<ctime(&t); //单...
阅读全文
摘要:1.搜索指定文件夹下的文件名和路径#undef UNICODE #include #include #include #include #include #include std::shared_ptr > fileList(co...
阅读全文
摘要:#include #include #include #include using namespace std;template void order(vector &a){ int count = a.size(); T temp; for (int i=0;ia[j+1])...
阅读全文
摘要:1、strcat()#include #include #include //strcat()函数分4部分写//1.定义4个char*//2.变量检查不为空assert()//3.指针指向第一个字符串的末尾//4.逐个字符的赋值char *strcat(char *strDest, char *s...
阅读全文
摘要:(鼠标旋转功能)#include using namespace std;#includeGLfloat transx,transy;GLfloat scale;int primw=300;int primh=300;GLfloat rotatex=0,rotatey=0;GLint mousepx...
阅读全文
摘要:#include #include #include using namespace std;void main(){ int a,b; char c; ofstream fout("test.txt"); fout>a>>b>>c; if(fin...
阅读全文
摘要:http://www.qtcn.org/bbs/read-htm-tid-57817.html源码下载:https://git.oschina.net/zhjun5337/Qt360-10.0 或 http://pan.baidu.com/s/1dDjaOmt1、2、Qmake3、qmake -sp...
阅读全文
摘要:1>LINK : fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏解决方法:一、1.点击“项目”--》“属性”--》“清单工具” 2.‘输入和输出’--》‘嵌入清单’,后面的‘是’改成‘否’就可以了二、将“C:\Program Files (x86)\Micr...
阅读全文
摘要:软件介绍 一个由印度人编写的VC串口类(也是一种VC串口控件),他还配合这个类写了VC 串口通信方面的一些基础知识,如怎么用VC打开串口,如何对串口进行配置,读串口、写串口等。 这个类有点特别,它没有使用事件驱动原理,它是以查询方式工作的。简介: 对没有接触过串口通信的VC程序员来说显得非...
阅读全文
摘要:#include #include #include using namespace std;void main(){ int a,b;char c;ofstream fout("test.txt");fout>a>>b>>c; cout>a;}#include #include...
阅读全文
浙公网安备 33010602011771号